diff --git a/tools/licenses/lib/main.dart b/tools/licenses/lib/main.dart index 0b630af2714..e640d6bc027 100644 --- a/tools/licenses/lib/main.dart +++ b/tools/licenses/lib/main.dart @@ -680,80 +680,6 @@ class RepositoryIcuLicenseFile extends RepositoryLicenseFile { Iterable get licenses => _licenses; } -class RepositoryXdgMimeLicenseFile extends RepositoryLicenseFile { - RepositoryXdgMimeLicenseFile(RepositoryDirectory parent, fs.TextFile io) - : _licenses = _parseLicense(io), - super(parent, io); - - @override - fs.TextFile get io => super.io; - - final List _licenses; - - static final RegExp _pattern = new RegExp( - r'^Licensed under the Academic Free License version 2\.0 \(below\)\n*' - r'Or under the following terms:\n+' - r'This library is free software; you can redistribute it and/or\n' - r'modify it under the terms of the GNU Lesser General Public\n' - r'License as published by the Free Software Foundation; either\n' - r'version (2) of the License, or \(at your option\) any later version\.\n+' - r'This library is distributed in the hope that it will be useful,\n' - r'but WITHOUT ANY WARRANTY; without even the implied warranty of\n' - r'MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE\. +See the GNU\n' - r'Lesser General Public License for more details\.\n+' - r'You should have received a copy of the (GNU Lesser) General Public\n' - r'License along with this library; if not, write to the\n' - r'Free Software Foundation, Inc\., 59 Temple Place - Suite 330,\n' - r'Boston, MA 02111-1307, USA\.\n*' - r'--------------------------------------------------------------------------------\n' - r'Academic Free License v\. 2\.0\n' - r'--------------------------------------------------------------------------------\n+' - r'(This Academic Free License \(the "License"\) applies to (?:.|\n)*' - r'This license is Copyright \(C\) 2003 Lawrence E\. Rosen\. All rights reserved\.\n' - r'Permission is hereby granted to copy and distribute this license without\n' - r'modification\. This license may not be modified without the express written\n' - r'permission of its copyright owner\.\n*)$', - multiLine: true, - caseSensitive: false - ); - - static List _parseLicense(fs.TextFile io) { - final Match match = _pattern.firstMatch(io.readString()); - if (match == null) - throw 'could not parse xdg_mime license file'; - assert(match.groupCount == 3); - return [ - new License.fromUrl('${match.group(2)}:${match.group(1)}', origin: io.fullName), - new License.fromBodyAndType(match.group(3), LicenseType.afl, origin: io.fullName), - ]; - } - - @override - List licensesFor(String name) { - return [_licenses[0]]; - } - - @override - License licenseOfType(LicenseType type) { - if (type == _licenses[0].type) - return _licenses[0]; - if (type == _licenses[1].type) - return _licenses[1]; - throw 'tried to use xdg_mime license file to find a license by type but type wasn\'t valid'; - } - - @override - License licenseWithName(String name) { - throw 'tried to use xdg_mime license file to find a license by name'; - } - - @override - License get defaultLicense => _licenses[0]; - - @override - Iterable get licenses => _licenses; -} - Iterable> splitIntList(List data, int boundary) sync* { int index = 0; List getOne() { @@ -1896,17 +1822,6 @@ class RepositorySkiaDirectory extends RepositoryDirectory { } } -class RepositoryXdgMimeDirectory extends RepositoryDirectory { - RepositoryXdgMimeDirectory(RepositoryDirectory parent, fs.Directory io) : super(parent, io); - - @override - RepositoryFile createFile(fs.IoNode entry) { - if (entry.name == 'LICENSE') - return new RepositoryXdgMimeLicenseFile(this, entry); - return super.createFile(entry); - } -} - class RepositoryVulkanDirectory extends RepositoryDirectory { RepositoryVulkanDirectory(RepositoryDirectory parent, fs.Directory io) : super(parent, io); @@ -1959,7 +1874,7 @@ class RepositoryRootThirdPartyDirectory extends RepositoryGenericThirdPartyDirec if (entry.name == 'expat') return new RepositoryExpatDirectory(this, entry); if (entry.name == 'freetype-android') - throw 'detected unexpected resurgence of freetype-android'; + throw '//third_party/freetype-android is no longer part of this client: remove it'; if (entry.name == 'freetype2') return new RepositoryFreetypeDirectory(this, entry); if (entry.name == 'icu') @@ -1982,38 +1897,6 @@ class RepositoryRootThirdPartyDirectory extends RepositoryGenericThirdPartyDirec } } -class RepositoryBaseThirdPartyDirectory extends RepositoryGenericThirdPartyDirectory { - RepositoryBaseThirdPartyDirectory(RepositoryDirectory parent, fs.Directory io) : super(parent, io); - - @override - bool shouldRecurse(fs.IoNode entry) { - return entry.name != 'dynamic-annotations' // only used by a random test - && entry.name != 'valgrind' // unopt engine builds only - && super.shouldRecurse(entry); - } - - @override - RepositoryDirectory createSubdirectory(fs.Directory entry) { - if (entry.name == 'xdg_mime') - return new RepositoryXdgMimeDirectory(this, entry); - return super.createSubdirectory(entry); - } -} - -class RepositoryBaseDirectory extends RepositoryDirectory { - RepositoryBaseDirectory(RepositoryDirectory parent, fs.Directory io) : super(parent, io); - - @override - bool get isLicenseRoot => true; - - @override - RepositoryDirectory createSubdirectory(fs.Directory entry) { - if (entry.name == 'third_party') - return new RepositoryBaseThirdPartyDirectory(this, entry); - return super.createSubdirectory(entry); - } -} - class RepositoryBoringSSLThirdPartyDirectory extends RepositoryDirectory { RepositoryBoringSSLThirdPartyDirectory(RepositoryDirectory parent, fs.Directory io) : super(parent, io); @@ -2228,10 +2111,10 @@ class RepositoryRoot extends RepositoryDirectory { @override RepositoryDirectory createSubdirectory(fs.Directory entry) { + if (entry.name == 'base') + throw '//base is no longer part of this client: remove it'; if (entry.name == 'third_party') return new RepositoryRootThirdPartyDirectory(this, entry); - if (entry.name == 'base') - return new RepositoryBaseDirectory(this, entry); if (entry.name == 'dart') return new RepositoryDartDirectory(this, entry); if (entry.name == 'flutter') diff --git a/travis/licenses_golden/licenses_base b/travis/licenses_golden/licenses_base deleted file mode 100644 index f11f96a3446..00000000000 --- a/travis/licenses_golden/licenses_base +++ /dev/null @@ -1,2872 +0,0 @@ -Signature: 1b1e485286465ea90b0467191c95f815 - -UNUSED LICENSES: - -==================================================================================================== -ORIGIN: ../../../base/third_party/dynamic_annotations/LICENSE -TYPE: LicenseType.bsd ----------------------------------------------------------------------------------------------------- -Copyright (c) 2008-2009, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Author: Kostya Serebryany -==================================================================================================== - -==================================================================================================== -ORIGIN: ../../../base/third_party/nspr/LICENSE -TYPE: LicenseType.unknown ----------------------------------------------------------------------------------------------------- -Version: MPL 1.1/GPL 2.0/LGPL 2.1 - -The contents of this file are subject to the Mozilla Public License Version -1.1 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at -http://www.mozilla.org/MPL - -Software distributed under the License is distributed on an "AS IS" basis, -WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -for the specific language governing rights and limitations under the -License. - -The Original Code is the Netscape Portable Runtime (NSPR). - -The Initial Developer of the Original Code is -Netscape Communications Corporation. -Portions created by the Initial Developer are Copyright (C) 1998-2000 -the Initial Developer. All Rights Reserved. - -Contributor(s): - -Alternatively, the contents of this file may be used under the terms of -either the GNU General Public License Version 2 or later (the "GPL"), or -the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -in which case the provisions of the GPL or the LGPL are applicable instead -of those above. If you wish to allow use of your version of this file only -under the terms of either the GPL or the LGPL, and not to allow others to -use your version of this file under the terms of the MPL, indicate your -decision by deleting the provisions above and replace them with the notice -and other provisions required by the GPL or the LGPL. If you do not delete -the provisions above, a recipient may use your version of this file under -the terms of any one of the MPL, the GPL or the LGPL. -==================================================================================================== - -==================================================================================================== -ORIGIN: ../../../base/third_party/superfasthash/LICENSE -TYPE: LicenseType.bsd ----------------------------------------------------------------------------------------------------- -Paul Hsieh OLD BSD license - -Copyright (c) 2010, Paul Hsieh -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. -* Neither my name, Paul Hsieh, nor the names of any other contributors to the - code use may not be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -ORIGIN: ../../../base/third_party/xdg_mime/LICENSE -TYPE: LicenseType.afl ----------------------------------------------------------------------------------------------------- -This Academic Free License (the "License") applies to any original work of -authorship (the "Original Work") whose owner (the "Licensor") has placed the -following notice immediately following the copyright notice for the Original -Work: - -Licensed under the Academic Free License version 2.0 -1) Grant of Copyright License. Licensor hereby grants You a world-wide, -royalty-free, non-exclusive, perpetual, sublicenseable license to do the -following: - -a) to reproduce the Original Work in copies; -b) to prepare derivative works ("Derivative Works") based upon the Original - Work; -c) to distribute copies of the Original Work and Derivative Works to the - public; -d) to perform the Original Work publicly; and -e) to display the Original Work publicly. - -2) Grant of Patent License. Licensor hereby grants You a world-wide, -royalty-free, non-exclusive, perpetual, sublicenseable license, under patent -claims owned or controlled by the Licensor that are embodied in the Original -Work as furnished by the Licensor, to make, use, sell and offer for sale the -Original Work and Derivative Works. - -3) Grant of Source Code License. The term "Source Code" means the preferred -form of the Original Work for making modifications to it and all available -documentation describing how to modify the Original Work. Licensor hereby -agrees to provide a machine-readable copy of the Source Code of the Original -Work along with each copy of the Original Work that Licensor distributes. -Licensor reserves the right to satisfy this obligation by placing a -machine-readable copy of the Source Code in an information repository -reasonably calculated to permit inexpensive and convenient access by You for as -long as Licensor continues to distribute the Original Work, and by publishing -the address of that information repository in a notice immediately following -the copyright notice that applies to the Original Work. - -4) Exclusions From License Grant. Neither the names of Licensor, nor the names -of any contributors to the Original Work, nor any of their trademarks or -service marks, may be used to endorse or promote products derived from this -Original Work without express prior written permission of the Licensor. Nothing -in this License shall be deemed to grant any rights to trademarks, copyrights, -patents, trade secrets or any other intellectual property of Licensor except as -expressly stated herein. No patent license is granted to make, use, sell or -offer to sell embodiments of any patent claims other than the licensed claims -defined in Section 2. No right is granted to the trademarks of Licensor even if -such marks are included in the Original Work. Nothing in this License shall be -interpreted to prohibit Licensor from licensing under different terms from this -License any Original Work that Licensor otherwise would have a right to -license. - -5) This section intentionally omitted. - -6) Attribution Rights. You must retain, in the Source Code of any Derivative -Works that You create, all copyright, patent or trademark notices from the -Source Code of the Original Work, as well as any notices of licensing and any -descriptive text identified therein as an "Attribution Notice." You must cause -the Source Code for any Derivative Works that You create to carry a prominent -Attribution Notice reasonably calculated to inform recipients that You have -modified the Original Work. - -7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that -the copyright in and to the Original Work and the patent rights granted herein -by Licensor are owned by the Licensor or are sublicensed to You under the terms -of this License with the permission of the contributor(s) of those copyrights -and patent rights. Except as expressly stated in the immediately proceeding -sentence, the Original Work is provided under this License on an "AS IS" BASIS -and WITHOUT WARRANTY, either express or implied, including, without limitation, -the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. -This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No -license to Original Work is granted hereunder except under this disclaimer. - -8) Limitation of Liability. Under no circumstances and under no legal theory, -whether in tort (including negligence), contract, or otherwise, shall the -Licensor be liable to any person for any direct, indirect, special, incidental, -or consequential damages of any character arising as a result of this License -or the use of the Original Work including, without limitation, damages for loss -of goodwill, work stoppage, computer failure or malfunction, or any and all -other commercial damages or losses. This limitation of liability shall not -apply to liability for death or personal injury resulting from Licensor's -negligence to the extent applicable law prohibits such limitation. Some -jurisdictions do not allow the exclusion or limitation of incidental or -consequential damages, so this exclusion and limitation may not apply to You. - -9) Acceptance and Termination. If You distribute copies of the Original Work or -a Derivative Work, You must make a reasonable effort under the circumstances to -obtain the express assent of recipients to the terms of this License. Nothing -else but this License (or another written agreement between Licensor and You) -grants You permission to create Derivative Works based upon the Original Work -or to exercise any of the rights granted in Section 1 herein, and any attempt -to do so except under the terms of this License (or another written agreement -between Licensor and You) is expressly prohibited by U.S. copyright law, the -equivalent laws of other countries, and by international treaty. Therefore, by -exercising any of the rights granted to You in Section 1 herein, You indicate -Your acceptance of this License and all of its terms and conditions. - -10) Termination for Patent Action. This License shall terminate automatically -and You may no longer exercise any of the rights granted to You by this License -as of the date You commence an action, including a cross-claim or counterclaim, -for patent infringement (i) against Licensor with respect to a patent -applicable to software or (ii) against any entity with respect to a patent -applicable to the Original Work (but excluding combinations of the Original -Work with other software or hardware). - -11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this -License may be brought only in the courts of a jurisdiction wherein the -Licensor resides or in which Licensor conducts its primary business, and under -the laws of that jurisdiction excluding its conflict-of-law provisions. The -application of the United Nations Convention on Contracts for the International -Sale of Goods is expressly excluded. Any use of the Original Work outside the -scope of this License or after its termination shall be subject to the -requirements and penalties of the U.S. Copyright Act, 17 U.S.C. 101 et seq., -the equivalent laws of other countries, and international treaty. This section -shall survive the termination of this License. - -12) Attorneys Fees. In any action to enforce the terms of this License or -seeking damages relating thereto, the prevailing party shall be entitled to -recover its costs and expenses, including, without limitation, reasonable -attorneys' fees and costs incurred in connection with such action, including -any appeal of such action. This section shall survive the termination of this -License. - -13) Miscellaneous. This License represents the complete agreement concerning -the subject matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent necessary to -make it enforceable. - -14) Definition of "You" in This License. "You" throughout this License, whether -in upper or lower case, means an individual or a legal entity exercising rights -under, and complying with all of the terms of, this License. For legal -entities, "You" includes any entity that controls, is controlled by, or is -under common control with you. For purposes of this definition, "control" means -(i) the power, direct or indirect, to cause the direction or management of such -entity, whether by contract or otherwise, or (ii) ownership of fifty percent -(50%) or more of the outstanding shares, or (iii) beneficial ownership of such -entity. - -15) Right to Use. You may use the Original Work in all ways not otherwise -restricted or conditioned by this License or by law, and Licensor promises not -to interfere with or be responsible for such uses by You. - -This license is Copyright (C) 2003 Lawrence E. Rosen. All rights reserved. -Permission is hereby granted to copy and distribute this license without -modification. This license may not be modified without the express written -permission of its copyright owner. -==================================================================================================== -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -USED LICENSES: - -==================================================================================================== -LIBRARY: base -LIBRARY: dmg_fp -ORIGIN: ../../../base/allocator/allocator_extension.cc + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/allocator/allocator_extension.cc -FILE: ../../../base/allocator/allocator_extension.h -FILE: ../../../base/allocator/allocator_extension_thunks.cc -FILE: ../../../base/allocator/allocator_extension_thunks.h -FILE: ../../../base/allocator/allocator_shim_win.cc -FILE: ../../../base/allocator/debugallocation_shim.cc -FILE: ../../../base/allocator/tcmalloc_unittest.cc -FILE: ../../../base/android/base_jni_registrar.cc -FILE: ../../../base/android/base_jni_registrar.h -FILE: ../../../base/android/build_info.cc -FILE: ../../../base/android/build_info.h -FILE: ../../../base/android/cpu_features.cc -FILE: ../../../base/android/cpu_features.h -FILE: ../../../base/android/jni_android.cc -FILE: ../../../base/android/jni_android.h -FILE: ../../../base/android/jni_android_unittest.cc -FILE: ../../../base/android/jni_array.cc -FILE: ../../../base/android/jni_array.h -FILE: ../../../base/android/jni_array_unittest.cc -FILE: ../../../base/android/jni_generator/sample_for_tests.cc -FILE: ../../../base/android/jni_registrar.cc -FILE: ../../../base/android/jni_registrar.h -FILE: ../../../base/android/jni_string.cc -FILE: ../../../base/android/jni_string.h -FILE: ../../../base/android/jni_string_unittest.cc -FILE: ../../../base/android/path_service_android.cc -FILE: ../../../base/android/path_service_android.h -FILE: ../../../base/android/path_utils.cc -FILE: ../../../base/android/path_utils.h -FILE: ../../../base/android/path_utils_unittest.cc -FILE: ../../../base/android/scoped_java_ref.cc -FILE: ../../../base/android/scoped_java_ref.h -FILE: ../../../base/android/scoped_java_ref_unittest.cc -FILE: ../../../base/android/thread_utils.h -FILE: ../../../base/atomic_sequence_num.h -FILE: ../../../base/atomicops.h -FILE: ../../../base/atomicops_internals_mac.h -FILE: ../../../base/base64.cc -FILE: ../../../base/base64_unittest.cc -FILE: ../../../base/base_export.h -FILE: ../../../base/base_paths.h -FILE: ../../../base/base_paths_android.cc -FILE: ../../../base/base_paths_android.h -FILE: ../../../base/base_paths_mac.mm -FILE: ../../../base/base_paths_posix.cc -FILE: ../../../base/base_paths_posix.h -FILE: ../../../base/base_paths_win.cc -FILE: ../../../base/base_paths_win.h -FILE: ../../../base/base_switches.cc -FILE: ../../../base/base_switches.h -FILE: ../../../base/base_unittests.isolate -FILE: ../../../base/bind_helpers.cc -FILE: ../../../base/bind_unittest.cc -FILE: ../../../base/callback.h -FILE: ../../../base/callback_helpers.h -FILE: ../../../base/callback_internal.cc -FILE: ../../../base/callback_internal.h -FILE: ../../../base/callback_unittest.cc -FILE: ../../../base/command_line.cc -FILE: ../../../base/command_line.h -FILE: ../../../base/command_line_unittest.cc -FILE: ../../../base/compiler_specific.h -FILE: ../../../base/containers/small_map.h -FILE: ../../../base/containers/small_map_unittest.cc -FILE: ../../../base/containers/stack_container.h -FILE: ../../../base/containers/stack_container_unittest.cc -FILE: ../../../base/cpu.cc -FILE: ../../../base/cpu.h -FILE: ../../../base/cpu_unittest.cc -FILE: ../../../base/critical_closure.h -FILE: ../../../base/debug/crash_logging.cc -FILE: ../../../base/debug/crash_logging.h -FILE: ../../../base/debug/debugger_posix.cc -FILE: ../../../base/debug/leak_tracker.h -FILE: ../../../base/debug/profiler.cc -FILE: ../../../base/debug/profiler.h -FILE: ../../../base/debug/stack_trace.cc -FILE: ../../../base/debug/stack_trace.h -FILE: ../../../base/debug/stack_trace_android.cc -FILE: ../../../base/debug/stack_trace_posix.cc -FILE: ../../../base/debug/stack_trace_win.cc -FILE: ../../../base/environment.cc -FILE: ../../../base/event_types.h -FILE: ../../../base/file_version_info_mac.mm -FILE: ../../../base/files/dir_reader_fallback.h -FILE: ../../../base/files/dir_reader_linux.h -FILE: ../../../base/files/dir_reader_posix.h -FILE: ../../../base/files/dir_reader_posix_unittest.cc -FILE: ../../../base/files/file.h -FILE: ../../../base/files/file_enumerator.h -FILE: ../../../base/files/file_path.cc -FILE: ../../../base/files/file_path.h -FILE: ../../../base/files/file_path_unittest.cc -FILE: ../../../base/files/file_path_watcher.h -FILE: ../../../base/files/file_path_watcher_kqueue.cc -FILE: ../../../base/files/file_path_watcher_linux.cc -FILE: ../../../base/files/file_path_watcher_stub.cc -FILE: ../../../base/files/file_path_watcher_unittest.cc -FILE: ../../../base/files/file_posix.cc -FILE: ../../../base/files/file_unittest.cc -FILE: ../../../base/files/file_util.cc -FILE: ../../../base/files/file_util.h -FILE: ../../../base/files/file_util_android.cc -FILE: ../../../base/files/file_util_mac.mm -FILE: ../../../base/files/file_util_posix.cc -FILE: ../../../base/files/file_util_proxy.cc -FILE: ../../../base/files/file_util_proxy.h -FILE: ../../../base/files/file_util_proxy_unittest.cc -FILE: ../../../base/files/file_util_unittest.cc -FILE: ../../../base/files/file_util_win.cc -FILE: ../../../base/files/file_win.cc -FILE: ../../../base/files/important_file_writer.h -FILE: ../../../base/files/important_file_writer_unittest.cc -FILE: ../../../base/gtest_prod_util.h -FILE: ../../../base/guid.cc -FILE: ../../../base/guid.h -FILE: ../../../base/guid_posix.cc -FILE: ../../../base/guid_unittest.cc -FILE: ../../../base/guid_win.cc -FILE: ../../../base/i18n/file_util_icu.cc -FILE: ../../../base/i18n/file_util_icu.h -FILE: ../../../base/i18n/file_util_icu_unittest.cc -FILE: ../../../base/i18n/icu_string_conversions.cc -FILE: ../../../base/i18n/icu_util.cc -FILE: ../../../base/i18n/number_formatting.cc -FILE: ../../../base/ios/device_util.h -FILE: ../../../base/ios/device_util.mm -FILE: ../../../base/ios/device_util_unittest.mm -FILE: ../../../base/ios/scoped_critical_action.h -FILE: ../../../base/ios/scoped_critical_action.mm -FILE: ../../../base/json/json_file_value_serializer.cc -FILE: ../../../base/json/json_file_value_serializer.h -FILE: ../../../base/json/json_parser.cc -FILE: ../../../base/json/json_parser.h -FILE: ../../../base/json/json_parser_unittest.cc -FILE: ../../../base/json/json_reader.cc -FILE: ../../../base/json/json_reader.h -FILE: ../../../base/json/json_reader_unittest.cc -FILE: ../../../base/json/json_string_value_serializer.cc -FILE: ../../../base/json/json_string_value_serializer.h -FILE: ../../../base/json/json_value_converter.h -FILE: ../../../base/json/json_value_converter_unittest.cc -FILE: ../../../base/json/json_value_serializer_unittest.cc -FILE: ../../../base/json/json_writer.cc -FILE: ../../../base/json/json_writer.h -FILE: ../../../base/json/json_writer_unittest.cc -FILE: ../../../base/lazy_instance.h -FILE: ../../../base/lazy_instance_unittest.cc -FILE: ../../../base/linux_util.cc -FILE: ../../../base/linux_util.h -FILE: ../../../base/location.cc -FILE: ../../../base/location.h -FILE: ../../../base/logging.cc -FILE: ../../../base/logging.h -FILE: ../../../base/logging_win.h -FILE: ../../../base/mac/authorization_util.h -FILE: ../../../base/mac/authorization_util.mm -FILE: ../../../base/mac/bind_objc_block.h -FILE: ../../../base/mac/bind_objc_block_unittest.mm -FILE: ../../../base/mac/bundle_locations.h -FILE: ../../../base/mac/bundle_locations.mm -FILE: ../../../base/mac/cocoa_protocols.h -FILE: ../../../base/mac/foundation_util.h -FILE: ../../../base/mac/foundation_util.mm -FILE: ../../../base/mac/foundation_util_unittest.mm -FILE: ../../../base/mac/launchd.cc -FILE: ../../../base/mac/launchd.h -FILE: ../../../base/mac/libdispatch_task_runner.cc -FILE: ../../../base/mac/libdispatch_task_runner.h -FILE: ../../../base/mac/libdispatch_task_runner_unittest.cc -FILE: ../../../base/mac/mac_logging.cc -FILE: ../../../base/mac/mac_logging.h -FILE: ../../../base/mac/mac_util.h -FILE: ../../../base/mac/mac_util.mm -FILE: ../../../base/mac/mac_util_unittest.mm -FILE: ../../../base/mac/scoped_authorizationref.h -FILE: ../../../base/mac/scoped_cftyperef.h -FILE: ../../../base/mac/scoped_ioobject.h -FILE: ../../../base/mac/scoped_ioplugininterface.h -FILE: ../../../base/mac/scoped_launch_data.h -FILE: ../../../base/mac/scoped_mach_port.cc -FILE: ../../../base/mac/scoped_mach_port.h -FILE: ../../../base/mac/scoped_nsexception_enabler.mm -FILE: ../../../base/mac/scoped_nsobject.h -FILE: ../../../base/mac/scoped_nsobject_unittest.mm -FILE: ../../../base/mac/scoped_sending_event.h -FILE: ../../../base/mac/sdk_forward_declarations.h -FILE: ../../../base/memory/aligned_memory.cc -FILE: ../../../base/memory/aligned_memory.h -FILE: ../../../base/memory/aligned_memory_unittest.cc -FILE: ../../../base/memory/linked_ptr_unittest.cc -FILE: ../../../base/memory/manual_constructor.h -FILE: ../../../base/memory/ref_counted.h -FILE: ../../../base/memory/ref_counted_memory.cc -FILE: ../../../base/memory/ref_counted_memory.h -FILE: ../../../base/memory/ref_counted_unittest.cc -FILE: ../../../base/memory/scoped_policy.h -FILE: ../../../base/memory/scoped_ptr.h -FILE: ../../../base/memory/scoped_ptr_unittest.cc -FILE: ../../../base/memory/scoped_ptr_unittest.nc -FILE: ../../../base/memory/scoped_vector.h -FILE: ../../../base/memory/scoped_vector_unittest.cc -FILE: ../../../base/memory/shared_memory.h -FILE: ../../../base/memory/shared_memory_mac.cc -FILE: ../../../base/memory/shared_memory_nacl.cc -FILE: ../../../base/memory/shared_memory_posix.cc -FILE: ../../../base/memory/shared_memory_unittest.cc -FILE: ../../../base/memory/singleton_unittest.cc -FILE: ../../../base/memory/weak_ptr.h -FILE: ../../../base/memory/weak_ptr_unittest.cc -FILE: ../../../base/memory/weak_ptr_unittest.nc -FILE: ../../../base/message_loop/message_loop_task_runner.cc -FILE: ../../../base/message_loop/message_loop_task_runner.h -FILE: ../../../base/message_loop/message_loop_task_runner_unittest.cc -FILE: ../../../base/message_loop/message_pump.h -FILE: ../../../base/message_loop/message_pump_android.cc -FILE: ../../../base/message_loop/message_pump_android.h -FILE: ../../../base/message_loop/message_pump_default.h -FILE: ../../../base/message_loop/message_pump_dispatcher.h -FILE: ../../../base/message_loop/message_pump_libevent.cc -FILE: ../../../base/message_loop/message_pump_libevent.h -FILE: ../../../base/message_loop/message_pump_libevent_unittest.cc -FILE: ../../../base/message_loop/message_pump_mac.h -FILE: ../../../base/message_loop/message_pump_mac.mm -FILE: ../../../base/message_loop/message_pump_win.cc -FILE: ../../../base/message_loop/message_pump_win.h -FILE: ../../../base/metrics/bucket_ranges.cc -FILE: ../../../base/metrics/bucket_ranges.h -FILE: ../../../base/metrics/bucket_ranges_unittest.cc -FILE: ../../../base/metrics/field_trial.cc -FILE: ../../../base/metrics/field_trial.h -FILE: ../../../base/metrics/field_trial_unittest.cc -FILE: ../../../base/metrics/histogram.cc -FILE: ../../../base/metrics/histogram.h -FILE: ../../../base/metrics/histogram_base.cc -FILE: ../../../base/metrics/histogram_base.h -FILE: ../../../base/metrics/histogram_base_unittest.cc -FILE: ../../../base/metrics/histogram_flattener.h -FILE: ../../../base/metrics/histogram_samples.cc -FILE: ../../../base/metrics/histogram_samples.h -FILE: ../../../base/metrics/histogram_snapshot_manager.cc -FILE: ../../../base/metrics/histogram_snapshot_manager.h -FILE: ../../../base/metrics/histogram_unittest.cc -FILE: ../../../base/metrics/sample_map.cc -FILE: ../../../base/metrics/sample_map.h -FILE: ../../../base/metrics/sample_map_unittest.cc -FILE: ../../../base/metrics/sample_vector.cc -FILE: ../../../base/metrics/sample_vector.h -FILE: ../../../base/metrics/sample_vector_unittest.cc -FILE: ../../../base/metrics/sparse_histogram.cc -FILE: ../../../base/metrics/sparse_histogram.h -FILE: ../../../base/metrics/sparse_histogram_unittest.cc -FILE: ../../../base/metrics/statistics_recorder.cc -FILE: ../../../base/metrics/statistics_recorder.h -FILE: ../../../base/metrics/statistics_recorder_unittest.cc -FILE: ../../../base/move.h -FILE: ../../../base/nix/mime_util_xdg.cc -FILE: ../../../base/nix/xdg_util.cc -FILE: ../../../base/nix/xdg_util.h -FILE: ../../../base/observer_list_threadsafe.h -FILE: ../../../base/observer_list_unittest.cc -FILE: ../../../base/os_compat_android.cc -FILE: ../../../base/os_compat_android.h -FILE: ../../../base/os_compat_android_unittest.cc -FILE: ../../../base/os_compat_nacl.cc -FILE: ../../../base/os_compat_nacl.h -FILE: ../../../base/path_service.cc -FILE: ../../../base/path_service.h -FILE: ../../../base/path_service_unittest.cc -FILE: ../../../base/pickle.cc -FILE: ../../../base/pickle.h -FILE: ../../../base/pickle_unittest.cc -FILE: ../../../base/posix/eintr_wrapper.h -FILE: ../../../base/posix/file_descriptor_shuffle_unittest.cc -FILE: ../../../base/posix/global_descriptors.cc -FILE: ../../../base/posix/global_descriptors.h -FILE: ../../../base/prefs/base_prefs_export.h -FILE: ../../../base/prefs/default_pref_store.cc -FILE: ../../../base/prefs/default_pref_store.h -FILE: ../../../base/prefs/default_pref_store_unittest.cc -FILE: ../../../base/prefs/json_pref_store.cc -FILE: ../../../base/prefs/json_pref_store.h -FILE: ../../../base/prefs/json_pref_store_unittest.cc -FILE: ../../../base/prefs/overlay_user_pref_store.cc -FILE: ../../../base/prefs/overlay_user_pref_store.h -FILE: ../../../base/prefs/overlay_user_pref_store_unittest.cc -FILE: ../../../base/prefs/persistent_pref_store.h -FILE: ../../../base/prefs/pref_member.cc -FILE: ../../../base/prefs/pref_member.h -FILE: ../../../base/prefs/pref_notifier_impl.cc -FILE: ../../../base/prefs/pref_observer.h -FILE: ../../../base/prefs/pref_registry.cc -FILE: ../../../base/prefs/pref_registry.h -FILE: ../../../base/prefs/pref_registry_simple.cc -FILE: ../../../base/prefs/pref_registry_simple.h -FILE: ../../../base/prefs/pref_service.cc -FILE: ../../../base/prefs/pref_service.h -FILE: ../../../base/prefs/pref_service_unittest.cc -FILE: ../../../base/prefs/pref_store.cc -FILE: ../../../base/prefs/pref_store.h -FILE: ../../../base/prefs/pref_value_store.cc -FILE: ../../../base/prefs/pref_value_store.h -FILE: ../../../base/prefs/pref_value_store_unittest.cc -FILE: ../../../base/prefs/testing_pref_service.cc -FILE: ../../../base/prefs/testing_pref_service.h -FILE: ../../../base/prefs/testing_pref_store.cc -FILE: ../../../base/prefs/testing_pref_store.h -FILE: ../../../base/prefs/value_map_pref_store.cc -FILE: ../../../base/prefs/value_map_pref_store.h -FILE: ../../../base/process/internal_linux.cc -FILE: ../../../base/process/launch_ios.cc -FILE: ../../../base/process/launch_mac.cc -FILE: ../../../base/process/launch_posix.cc -FILE: ../../../base/process/launch_win.cc -FILE: ../../../base/process/memory_unittest.cc -FILE: ../../../base/process/process_info.h -FILE: ../../../base/process/process_info_mac.cc -FILE: ../../../base/process/process_info_win.cc -FILE: ../../../base/process/process_util_unittest.cc -FILE: ../../../base/profiler/alternate_timer.cc -FILE: ../../../base/profiler/alternate_timer.h -FILE: ../../../base/profiler/tracked_time.cc -FILE: ../../../base/profiler/tracked_time.h -FILE: ../../../base/profiler/tracked_time_unittest.cc -FILE: ../../../base/rand_util.h -FILE: ../../../base/rand_util_nacl.cc -FILE: ../../../base/rand_util_posix.cc -FILE: ../../../base/rand_util_win.cc -FILE: ../../../base/run_loop.cc -FILE: ../../../base/run_loop.h -FILE: ../../../base/scoped_observer.h -FILE: ../../../base/sequence_checker.h -FILE: ../../../base/sequence_checker_impl.cc -FILE: ../../../base/sequence_checker_impl.h -FILE: ../../../base/sequenced_task_runner.cc -FILE: ../../../base/sequenced_task_runner.h -FILE: ../../../base/sequenced_task_runner_helpers.h -FILE: ../../../base/single_thread_task_runner.h -FILE: ../../../base/strings/string_number_conversions.cc -FILE: ../../../base/strings/string_number_conversions.h -FILE: ../../../base/strings/string_number_conversions_unittest.cc -FILE: ../../../base/strings/string_piece.cc -FILE: ../../../base/strings/string_piece.h -FILE: ../../../base/strings/string_piece_unittest.cc -FILE: ../../../base/strings/string_split.cc -FILE: ../../../base/strings/string_split.h -FILE: ../../../base/strings/string_split_unittest.cc -FILE: ../../../base/strings/sys_string_conversions.h -FILE: ../../../base/strings/sys_string_conversions_mac.mm -FILE: ../../../base/strings/sys_string_conversions_mac_unittest.mm -FILE: ../../../base/strings/sys_string_conversions_posix.cc -FILE: ../../../base/supports_user_data.cc -FILE: ../../../base/supports_user_data.h -FILE: ../../../base/sync_socket.h -FILE: ../../../base/sync_socket_nacl.cc -FILE: ../../../base/sync_socket_posix.cc -FILE: ../../../base/sync_socket_win.cc -FILE: ../../../base/synchronization/condition_variable_unittest.cc -FILE: ../../../base/synchronization/lock_unittest.cc -FILE: ../../../base/synchronization/spin_wait.h -FILE: ../../../base/synchronization/waitable_event.h -FILE: ../../../base/synchronization/waitable_event_posix.cc -FILE: ../../../base/synchronization/waitable_event_unittest.cc -FILE: ../../../base/synchronization/waitable_event_watcher.h -FILE: ../../../base/synchronization/waitable_event_watcher_posix.cc -FILE: ../../../base/synchronization/waitable_event_watcher_unittest.cc -FILE: ../../../base/sys_byteorder.h -FILE: ../../../base/sys_info.cc -FILE: ../../../base/sys_info.h -FILE: ../../../base/sys_info_android.cc -FILE: ../../../base/sys_info_chromeos.cc -FILE: ../../../base/sys_info_ios.mm -FILE: ../../../base/sys_info_mac.cc -FILE: ../../../base/sys_info_unittest.cc -FILE: ../../../base/system_monitor/system_monitor.cc -FILE: ../../../base/system_monitor/system_monitor.h -FILE: ../../../base/system_monitor/system_monitor_unittest.cc -FILE: ../../../base/task_runner.cc -FILE: ../../../base/task_runner.h -FILE: ../../../base/task_runner_util.h -FILE: ../../../base/task_runner_util_unittest.cc -FILE: ../../../base/template_util_unittest.cc -FILE: ../../../base/third_party/dmg_fp/dtoa_wrapper.cc -FILE: ../../../base/thread_task_runner_handle.cc -FILE: ../../../base/thread_task_runner_handle.h -FILE: ../../../base/threading/non_thread_safe.h -FILE: ../../../base/threading/non_thread_safe_impl.cc -FILE: ../../../base/threading/non_thread_safe_impl.h -FILE: ../../../base/threading/non_thread_safe_unittest.cc -FILE: ../../../base/threading/platform_thread.h -FILE: ../../../base/threading/platform_thread_android.cc -FILE: ../../../base/threading/platform_thread_linux.cc -FILE: ../../../base/threading/platform_thread_mac.mm -FILE: ../../../base/threading/platform_thread_posix.cc -FILE: ../../../base/threading/platform_thread_unittest.cc -FILE: ../../../base/threading/platform_thread_win.cc -FILE: ../../../base/threading/sequenced_worker_pool.cc -FILE: ../../../base/threading/sequenced_worker_pool.h -FILE: ../../../base/threading/sequenced_worker_pool_unittest.cc -FILE: ../../../base/threading/simple_thread_unittest.cc -FILE: ../../../base/threading/thread.cc -FILE: ../../../base/threading/thread.h -FILE: ../../../base/threading/thread_checker.h -FILE: ../../../base/threading/thread_checker_unittest.cc -FILE: ../../../base/threading/thread_collision_warner.h -FILE: ../../../base/threading/thread_collision_warner_unittest.cc -FILE: ../../../base/threading/thread_id_name_manager.cc -FILE: ../../../base/threading/thread_id_name_manager.h -FILE: ../../../base/threading/thread_id_name_manager_unittest.cc -FILE: ../../../base/threading/thread_local_storage.h -FILE: ../../../base/threading/thread_local_storage_posix.cc -FILE: ../../../base/threading/thread_local_storage_unittest.cc -FILE: ../../../base/threading/thread_local_storage_win.cc -FILE: ../../../base/threading/thread_local_unittest.cc -FILE: ../../../base/threading/thread_restrictions.cc -FILE: ../../../base/threading/thread_restrictions.h -FILE: ../../../base/threading/thread_unittest.cc -FILE: ../../../base/threading/watchdog.cc -FILE: ../../../base/threading/watchdog.h -FILE: ../../../base/threading/watchdog_unittest.cc -FILE: ../../../base/threading/worker_pool.cc -FILE: ../../../base/threading/worker_pool.h -FILE: ../../../base/threading/worker_pool_posix.cc -FILE: ../../../base/threading/worker_pool_posix.h -FILE: ../../../base/threading/worker_pool_posix_unittest.cc -FILE: ../../../base/threading/worker_pool_unittest.cc -FILE: ../../../base/threading/worker_pool_win.cc -FILE: ../../../base/time/clock.cc -FILE: ../../../base/time/clock.h -FILE: ../../../base/time/default_clock.cc -FILE: ../../../base/time/default_clock.h -FILE: ../../../base/time/default_tick_clock.cc -FILE: ../../../base/time/default_tick_clock.h -FILE: ../../../base/time/pr_time_unittest.cc -FILE: ../../../base/time/tick_clock.cc -FILE: ../../../base/time/tick_clock.h -FILE: ../../../base/time/time.cc -FILE: ../../../base/time/time.h -FILE: ../../../base/time/time_mac.cc -FILE: ../../../base/time/time_posix.cc -FILE: ../../../base/time/time_unittest.cc -FILE: ../../../base/time/time_win.cc -FILE: ../../../base/time/time_win_unittest.cc -FILE: ../../../base/timer/hi_res_timer_manager_unittest.cc -FILE: ../../../base/timer/timer.cc -FILE: ../../../base/timer/timer.h -FILE: ../../../base/timer/timer_unittest.cc -FILE: ../../../base/tools_sanity_unittest.cc -FILE: ../../../base/trace_event/trace_event.h -FILE: ../../../base/trace_event/trace_event_android.cc -FILE: ../../../base/trace_event/trace_event_impl.cc -FILE: ../../../base/trace_event/trace_event_impl.h -FILE: ../../../base/trace_event/trace_event_unittest.cc -FILE: ../../../base/trace_event/trace_event_win.cc -FILE: ../../../base/trace_event/trace_event_win.h -FILE: ../../../base/tracked_objects.cc -FILE: ../../../base/tracked_objects.h -FILE: ../../../base/tracked_objects_unittest.cc -FILE: ../../../base/tracking_info.cc -FILE: ../../../base/tracking_info.h -FILE: ../../../base/value_conversions.cc -FILE: ../../../base/value_conversions.h -FILE: ../../../base/values.cc -FILE: ../../../base/values.h -FILE: ../../../base/values_unittest.cc -FILE: ../../../base/version.cc -FILE: ../../../base/version.h -FILE: ../../../base/version_unittest.cc -FILE: ../../../base/win/dllmain.cc -FILE: ../../../base/win/event_trace_consumer.h -FILE: ../../../base/win/event_trace_consumer_unittest.cc -FILE: ../../../base/win/event_trace_controller_unittest.cc -FILE: ../../../base/win/event_trace_provider.cc -FILE: ../../../base/win/iunknown_impl.h -FILE: ../../../base/win/metro.cc -FILE: ../../../base/win/metro.h -FILE: ../../../base/win/object_watcher.cc -FILE: ../../../base/win/pe_image_unittest.cc -FILE: ../../../base/win/registry.cc -FILE: ../../../base/win/registry.h -FILE: ../../../base/win/scoped_com_initializer.h -FILE: ../../../base/win/scoped_handle.cc -FILE: ../../../base/win/scoped_handle.h -FILE: ../../../base/win/scoped_hdc.h -FILE: ../../../base/win/scoped_process_information.cc -FILE: ../../../base/win/scoped_process_information.h -FILE: ../../../base/win/scoped_process_information_unittest.cc -FILE: ../../../base/win/shortcut.cc -FILE: ../../../base/win/shortcut.h -FILE: ../../../base/win/shortcut_unittest.cc -FILE: ../../../base/win/startup_information.cc -FILE: ../../../base/win/startup_information.h -FILE: ../../../base/win/startup_information_unittest.cc -FILE: ../../../base/win/win_util.cc -FILE: ../../../base/win/win_util.h -FILE: ../../../base/win/windows_version.cc -FILE: ../../../base/win/windows_version.h -FILE: ../../../base/win/wrapped_window_proc.cc -FILE: ../../../base/win/wrapped_window_proc.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 2012 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -LIBRARY: symbolize -ORIGIN: ../../../base/debug/debugger_win.cc + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/debug/debugger_win.cc -FILE: ../../../base/mac/os_crash_dumps.cc -FILE: ../../../base/mac/scoped_aedesc.h -FILE: ../../../base/mac/scoped_nsautorelease_pool.mm -FILE: ../../../base/message_loop/message_pump.cc -FILE: ../../../base/nix/xdg_util_unittest.cc -FILE: ../../../base/prefs/pref_change_registrar.cc -FILE: ../../../base/prefs/pref_change_registrar.h -FILE: ../../../base/prefs/pref_change_registrar_unittest.cc -FILE: ../../../base/process/memory_unittest_mac.h -FILE: ../../../base/process/memory_unittest_mac.mm -FILE: ../../../base/strings/nullable_string16.h -FILE: ../../../base/strings/stringize_macros.h -FILE: ../../../base/strings/stringize_macros_unittest.cc -FILE: ../../../base/strings/utf_string_conversions.cc -FILE: ../../../base/strings/utf_string_conversions_unittest.cc -FILE: ../../../base/third_party/symbolize/config.h -FILE: ../../../base/third_party/symbolize/glog/logging.h -FILE: ../../../base/third_party/symbolize/glog/raw_logging.h -FILE: ../../../base/third_party/symbolize/utilities.h -FILE: ../../../base/threading/simple_thread.cc -FILE: ../../../base/threading/thread_collision_warner.cc -FILE: ../../../base/threading/thread_local_win.cc -FILE: ../../../base/vlog.cc -FILE: ../../../base/vlog_unittest.cc -FILE: ../../../base/win/event_trace_provider_unittest.cc -FILE: ../../../base/win/i18n.cc -FILE: ../../../base/win/i18n_unittest.cc -FILE: ../../../base/win/pe_image.cc -FILE: ../../../base/win/pe_image.h -FILE: ../../../base/win/scoped_bstr.cc -FILE: ../../../base/win/scoped_bstr_unittest.cc -FILE: ../../../base/win/scoped_gdi_object.h -FILE: ../../../base/win/scoped_hglobal.h -FILE: ../../../base/win/scoped_variant.cc -FILE: ../../../base/win/win_util_unittest.cc ----------------------------------------------------------------------------------------------------- -Copyright (c) 2010 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -ORIGIN: ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/DEPS -FILE: ../../../base/allocator/allocator_unittest.cc -FILE: ../../../base/allocator/type_profiler_map_unittest.cc -FILE: ../../../base/allocator/type_profiler_unittest.cc -FILE: ../../../base/android/application_status_listener.cc -FILE: ../../../base/android/application_status_listener.h -FILE: ../../../base/android/application_status_listener_unittest.cc -FILE: ../../../base/android/content_uri_utils_unittest.cc -FILE: ../../../base/android/event_log.h -FILE: ../../../base/android/field_trial_list.cc -FILE: ../../../base/android/field_trial_list.h -FILE: ../../../base/android/java/src/org/chromium/base/ActivityState.java -FILE: ../../../base/android/java/src/org/chromium/base/ApkAssets.java -FILE: ../../../base/android/java/src/org/chromium/base/ApplicationStatus.java -FILE: ../../../base/android/java/src/org/chromium/base/EventLog.java -FILE: ../../../base/android/java/src/org/chromium/base/FieldTrialList.java -FILE: ../../../base/android/java/src/org/chromium/base/JNIAdditionalImport.java -FILE: ../../../base/android/java/src/org/chromium/base/JNIUtils.java -FILE: ../../../base/android/java/src/org/chromium/base/LocaleUtils.java -FILE: ../../../base/android/java/src/org/chromium/base/NativeCall.java -FILE: ../../../base/android/java/src/org/chromium/base/PerfTraceEvent.java -FILE: ../../../base/android/java/src/org/chromium/base/SecureRandomInitializer.java -FILE: ../../../base/android/java/src/org/chromium/base/TraceEvent.java -FILE: ../../../base/android/java/src/org/chromium/base/VisibleForTesting.java -FILE: ../../../base/android/java/src/org/chromium/base/annotations/SuppressFBWarnings.java -FILE: ../../../base/android/java/src/org/chromium/base/annotations/UsedByReflection.java -FILE: ../../../base/android/java/src/org/chromium/base/library_loader/LibraryLoader.java -FILE: ../../../base/android/java/src/org/chromium/base/library_loader/LoaderErrors.java -FILE: ../../../base/android/java/src/org/chromium/base/library_loader/ProcessInitException.java -FILE: ../../../base/android/java/src/org/chromium/base/metrics/RecordHistogram.java -FILE: ../../../base/android/java/templates/NativeLibraries.template -FILE: ../../../base/android/jni_generator/android_jar.classes -FILE: ../../../base/android/jni_generator/golden_sample_for_tests_jni.h -FILE: ../../../base/android/jni_generator/jni_generator_helper.h -FILE: ../../../base/android/jni_generator/testCalledByNatives.golden -FILE: ../../../base/android/jni_generator/testConstantsFromJavaP.golden -FILE: ../../../base/android/jni_generator/testEagerCalledByNativesOption.golden -FILE: ../../../base/android/jni_generator/testFromJavaP.golden -FILE: ../../../base/android/jni_generator/testFromJavaPGenerics.golden -FILE: ../../../base/android/jni_generator/testInnerClassNatives.golden -FILE: ../../../base/android/jni_generator/testInnerClassNativesBothInnerAndOuter.golden -FILE: ../../../base/android/jni_generator/testInnerClassNativesMultiple.golden -FILE: ../../../base/android/jni_generator/testInputStream.javap -FILE: ../../../base/android/jni_generator/testJNIInitNativeNameOption.golden -FILE: ../../../base/android/jni_generator/testJarJarRemapping.golden -FILE: ../../../base/android/jni_generator/testMotionEvent.javap -FILE: ../../../base/android/jni_generator/testMotionEvent.javap7 -FILE: ../../../base/android/jni_generator/testMultipleJNIAdditionalImport.golden -FILE: ../../../base/android/jni_generator/testNativeExportsOption.golden -FILE: ../../../base/android/jni_generator/testNativeExportsOptionalOption.golden -FILE: ../../../base/android/jni_generator/testNatives.golden -FILE: ../../../base/android/jni_generator/testNativesLong.golden -FILE: ../../../base/android/jni_generator/testPureNativeMethodsOption.golden -FILE: ../../../base/android/jni_generator/testSingleJNIAdditionalImport.golden -FILE: ../../../base/android/jni_int_wrapper.h -FILE: ../../../base/android/jni_utils.cc -FILE: ../../../base/android/jni_utils.h -FILE: ../../../base/android/jni_weak_ref.cc -FILE: ../../../base/android/jni_weak_ref.h -FILE: ../../../base/android/library_loader/library_load_from_apk_status_codes.h -FILE: ../../../base/android/library_loader/library_loader_hooks.cc -FILE: ../../../base/android/library_loader/library_loader_hooks.h -FILE: ../../../base/android/linker/DEPS -FILE: ../../../base/android/linker/legacy_linker_jni.cc -FILE: ../../../base/android/locale_utils.cc -FILE: ../../../base/android/locale_utils.h -FILE: ../../../base/android/record_histogram.cc -FILE: ../../../base/android/record_histogram.h -FILE: ../../../base/android/trace_event_binding.cc -FILE: ../../../base/android/trace_event_binding.h -FILE: ../../../base/base.isolate -FILE: ../../../base/big_endian.cc -FILE: ../../../base/big_endian.h -FILE: ../../../base/big_endian_unittest.cc -FILE: ../../../base/containers/adapters.h -FILE: ../../../base/containers/adapters_unittest.cc -FILE: ../../../base/critical_closure_internal_ios.mm -FILE: ../../../base/debug/asan_invalid_access.cc -FILE: ../../../base/debug/asan_invalid_access.h -FILE: ../../../base/debug/debugger_unittest.cc -FILE: ../../../base/debug/gdi_debug_util_win.cc -FILE: ../../../base/debug/gdi_debug_util_win.h -FILE: ../../../base/debug/task_annotator.cc -FILE: ../../../base/debug/task_annotator.h -FILE: ../../../base/debug/task_annotator_unittest.cc -FILE: ../../../base/files/file_path_watcher_fsevents.cc -FILE: ../../../base/files/file_path_watcher_fsevents.h -FILE: ../../../base/files/file_path_watcher_kqueue.h -FILE: ../../../base/files/file_path_watcher_mac.cc -FILE: ../../../base/files/file_proxy.cc -FILE: ../../../base/files/file_proxy.h -FILE: ../../../base/files/file_proxy_unittest.cc -FILE: ../../../base/files/memory_mapped_file_unittest.cc -FILE: ../../../base/files/scoped_file.cc -FILE: ../../../base/files/scoped_file.h -FILE: ../../../base/hash.cc -FILE: ../../../base/hash_unittest.cc -FILE: ../../../base/i18n/build_utf8_validator_tables.cc -FILE: ../../../base/i18n/streaming_utf8_validator.cc -FILE: ../../../base/i18n/streaming_utf8_validator.h -FILE: ../../../base/i18n/streaming_utf8_validator_perftest.cc -FILE: ../../../base/i18n/streaming_utf8_validator_unittest.cc -FILE: ../../../base/i18n/utf8_validator_tables.cc -FILE: ../../../base/i18n/utf8_validator_tables.h -FILE: ../../../base/ios/crb_protocol_observers.h -FILE: ../../../base/ios/crb_protocol_observers.mm -FILE: ../../../base/ios/crb_protocol_observers_unittest.mm -FILE: ../../../base/json/json_value_converter.cc -FILE: ../../../base/mac/dispatch_source_mach.cc -FILE: ../../../base/mac/dispatch_source_mach.h -FILE: ../../../base/mac/dispatch_source_mach_unittest.cc -FILE: ../../../base/mac/mach_logging.cc -FILE: ../../../base/mac/mach_logging.h -FILE: ../../../base/mac/scoped_mach_vm.cc -FILE: ../../../base/mac/scoped_mach_vm.h -FILE: ../../../base/mac/scoped_objc_class_swizzler.h -FILE: ../../../base/mac/scoped_objc_class_swizzler.mm -FILE: ../../../base/mac/scoped_objc_class_swizzler_unittest.mm -FILE: ../../../base/mac/scoped_typeref.h -FILE: ../../../base/mac/sdk_forward_declarations.mm -FILE: ../../../base/macros.h -FILE: ../../../base/memory/discardable_memory.cc -FILE: ../../../base/memory/discardable_shared_memory.cc -FILE: ../../../base/memory/discardable_shared_memory.h -FILE: ../../../base/memory/discardable_shared_memory_unittest.cc -FILE: ../../../base/memory/memory_pressure_monitor_chromeos.cc -FILE: ../../../base/memory/memory_pressure_monitor_chromeos.h -FILE: ../../../base/memory/memory_pressure_monitor_chromeos_unittest.cc -FILE: ../../../base/message_loop/message_pump_perftest.cc -FILE: ../../../base/message_loop/timer_slack.h -FILE: ../../../base/metrics/histogram_macros.h -FILE: ../../../base/metrics/histogram_snapshot_manager_unittest.cc -FILE: ../../../base/metrics/user_metrics.cc -FILE: ../../../base/metrics/user_metrics.h -FILE: ../../../base/metrics/user_metrics_action.h -FILE: ../../../base/numerics/safe_conversions.h -FILE: ../../../base/numerics/safe_conversions_impl.h -FILE: ../../../base/numerics/safe_math.h -FILE: ../../../base/numerics/safe_math_impl.h -FILE: ../../../base/power_monitor/power_monitor_device_source_chromeos.cc -FILE: ../../../base/prefs/writeable_pref_store.h -FILE: ../../../base/process/memory.cc -FILE: ../../../base/process/process_unittest.cc -FILE: ../../../base/profiler/scoped_tracker.cc -FILE: ../../../base/profiler/scoped_tracker.h -FILE: ../../../base/scoped_generic.h -FILE: ../../../base/scoped_generic_unittest.cc -FILE: ../../../base/supports_user_data_unittest.cc -FILE: ../../../base/task/cancelable_task_tracker.cc -FILE: ../../../base/task/cancelable_task_tracker.h -FILE: ../../../base/task/cancelable_task_tracker_unittest.cc -FILE: ../../../base/threading/platform_thread_freebsd.cc -FILE: ../../../base/threading/thread_local_android.cc -FILE: ../../../base/threading/thread_local_storage.cc -FILE: ../../../base/threading/thread_perftest.cc -FILE: ../../../base/timer/mock_timer.cc -FILE: ../../../base/timer/mock_timer.h -FILE: ../../../base/timer/mock_timer_unittest.cc -FILE: ../../../base/trace_event/etw_manifest/chrome_events_win.man -FILE: ../../../base/trace_event/trace_event_argument.h -FILE: ../../../base/trace_event/trace_event_synthetic_delay.cc -FILE: ../../../base/trace_event/trace_event_synthetic_delay.h -FILE: ../../../base/trace_event/trace_event_synthetic_delay_unittest.cc ----------------------------------------------------------------------------------------------------- -Copyright 2014 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -ORIGIN: ../../../base/allocator/type_profiler.cc + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/allocator/type_profiler.cc -FILE: ../../../base/allocator/type_profiler.h -FILE: ../../../base/allocator/type_profiler_control.cc -FILE: ../../../base/allocator/type_profiler_control.h -FILE: ../../../base/allocator/type_profiler_tcmalloc.cc -FILE: ../../../base/allocator/type_profiler_tcmalloc.h -FILE: ../../../base/android/java/src/org/chromium/base/BuildInfo.java -FILE: ../../../base/android/java/src/org/chromium/base/CalledByNative.java -FILE: ../../../base/android/java/src/org/chromium/base/CpuFeatures.java -FILE: ../../../base/android/java/src/org/chromium/base/JNINamespace.java -FILE: ../../../base/android/java/src/org/chromium/base/NativeClassQualifiedName.java -FILE: ../../../base/android/java/src/org/chromium/base/PathService.java -FILE: ../../../base/android/java/src/org/chromium/base/PathUtils.java -FILE: ../../../base/android/java/src/org/chromium/base/PowerMonitor.java -FILE: ../../../base/android/java/src/org/chromium/base/PowerStatusReceiver.java -FILE: ../../../base/android/java/src/org/chromium/base/ResourceExtractor.java -FILE: ../../../base/android/java/src/org/chromium/base/SystemMessageHandler.java -FILE: ../../../base/android/java/src/org/chromium/base/ThreadUtils.java -FILE: ../../../base/android/java/src/org/chromium/base/annotations/AccessedByNative.java -FILE: ../../../base/android/java/src/org/chromium/base/annotations/CalledByNativeUnchecked.java -FILE: ../../../base/android/jni_generator/java/src/org/chromium/example/jni_generator/SampleForTests.java -FILE: ../../../base/ios/ios_util.h -FILE: ../../../base/ios/ios_util.mm -FILE: ../../../base/mac/scoped_cffiledescriptorref.h -FILE: ../../../base/message_loop/message_pump_io_ios.cc -FILE: ../../../base/message_loop/message_pump_io_ios.h -FILE: ../../../base/message_loop/message_pump_io_ios_unittest.cc -FILE: ../../../base/stl_util_unittest.cc ----------------------------------------------------------------------------------------------------- -Copyright 2012 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -ORIGIN: ../../../base/allocator/unittest_utils.cc + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/allocator/unittest_utils.cc -FILE: ../../../base/bits.h -FILE: ../../../base/bits_unittest.cc -FILE: ../../../base/containers/linked_list.h -FILE: ../../../base/containers/linked_list_unittest.cc -FILE: ../../../base/format_macros.h -FILE: ../../../base/gmock_unittest.cc -FILE: ../../../base/i18n/icu_util_nacl_win64.cc -FILE: ../../../base/strings/utf_string_conversion_utils.cc -FILE: ../../../base/win/event_trace_controller.cc ----------------------------------------------------------------------------------------------------- -Copyright (c) 2009 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -ORIGIN: ../../../base/android/java/src/org/chromium/base/ApiCompatibilityUtils.java + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/android/command_line_android.cc -FILE: ../../../base/android/command_line_android.h -FILE: ../../../base/android/content_uri_utils.cc -FILE: ../../../base/android/content_uri_utils.h -FILE: ../../../base/android/event_log.cc -FILE: ../../../base/android/fifo_utils.cc -FILE: ../../../base/android/fifo_utils.h -FILE: ../../../base/android/important_file_writer_android.cc -FILE: ../../../base/android/important_file_writer_android.h -FILE: ../../../base/android/java/src/org/chromium/base/ApiCompatibilityUtils.java -FILE: ../../../base/android/java/src/org/chromium/base/BaseChromiumApplication.java -FILE: ../../../base/android/java/src/org/chromium/base/BaseSwitches.java -FILE: ../../../base/android/java/src/org/chromium/base/CollectionUtil.java -FILE: ../../../base/android/java/src/org/chromium/base/CommandLine.java -FILE: ../../../base/android/java/src/org/chromium/base/ContentUriUtils.java -FILE: ../../../base/android/java/src/org/chromium/base/ImportantFileWriterAndroid.java -FILE: ../../../base/android/java/src/org/chromium/base/JavaHandlerThread.java -FILE: ../../../base/android/java/src/org/chromium/base/MemoryPressureListener.java -FILE: ../../../base/android/java/src/org/chromium/base/ObserverList.java -FILE: ../../../base/android/java/src/org/chromium/base/StreamUtil.java -FILE: ../../../base/android/java/src/org/chromium/base/SysUtils.java -FILE: ../../../base/android/java_handler_thread.cc -FILE: ../../../base/android/java_handler_thread.h -FILE: ../../../base/android/memory_pressure_listener_android.cc -FILE: ../../../base/android/memory_pressure_listener_android.h -FILE: ../../../base/android/sys_utils.cc -FILE: ../../../base/android/sys_utils.h -FILE: ../../../base/android/sys_utils_unittest.cc -FILE: ../../../base/async_socket_io_handler.h -FILE: ../../../base/async_socket_io_handler_posix.cc -FILE: ../../../base/async_socket_io_handler_unittest.cc -FILE: ../../../base/async_socket_io_handler_win.cc -FILE: ../../../base/barrier_closure.cc -FILE: ../../../base/barrier_closure.h -FILE: ../../../base/barrier_closure_unittest.cc -FILE: ../../../base/basictypes.h -FILE: ../../../base/callback_helpers.cc -FILE: ../../../base/callback_helpers_unittest.cc -FILE: ../../../base/callback_list.h -FILE: ../../../base/callback_list_unittest.cc -FILE: ../../../base/callback_list_unittest.nc -FILE: ../../../base/containers/hash_tables_unittest.cc -FILE: ../../../base/containers/scoped_ptr_hash_map.h -FILE: ../../../base/debug/dump_without_crashing.cc -FILE: ../../../base/debug/dump_without_crashing.h -FILE: ../../../base/files/file_path_constants.cc -FILE: ../../../base/files/memory_mapped_file.cc -FILE: ../../../base/files/memory_mapped_file.h -FILE: ../../../base/files/memory_mapped_file_posix.cc -FILE: ../../../base/files/memory_mapped_file_win.cc -FILE: ../../../base/i18n/timezone.cc -FILE: ../../../base/i18n/timezone.h -FILE: ../../../base/i18n/timezone_unittest.cc -FILE: ../../../base/ios/block_types.h -FILE: ../../../base/ios/weak_nsobject.h -FILE: ../../../base/ios/weak_nsobject.mm -FILE: ../../../base/ios/weak_nsobject_unittest.mm -FILE: ../../../base/mac/close_nocancel.cc -FILE: ../../../base/mac/launch_services_util.cc -FILE: ../../../base/memory/memory_pressure_listener.cc -FILE: ../../../base/memory/memory_pressure_listener.h -FILE: ../../../base/memory/ref_counted_delete_on_message_loop.h -FILE: ../../../base/message_loop/incoming_task_queue.cc -FILE: ../../../base/message_loop/incoming_task_queue.h -FILE: ../../../base/message_loop/message_loop.cc -FILE: ../../../base/message_loop/message_loop.h -FILE: ../../../base/message_loop/message_loop_test.cc -FILE: ../../../base/message_loop/message_loop_test.h -FILE: ../../../base/message_loop/message_loop_unittest.cc -FILE: ../../../base/metrics/histogram_delta_serialization.cc -FILE: ../../../base/metrics/histogram_delta_serialization.h -FILE: ../../../base/metrics/histogram_delta_serialization_unittest.cc -FILE: ../../../base/numerics/safe_numerics_unittest.cc -FILE: ../../../base/power_monitor/power_monitor.cc -FILE: ../../../base/power_monitor/power_monitor.h -FILE: ../../../base/power_monitor/power_monitor_device_source.cc -FILE: ../../../base/power_monitor/power_monitor_device_source.h -FILE: ../../../base/power_monitor/power_monitor_device_source_android.cc -FILE: ../../../base/power_monitor/power_monitor_device_source_android.h -FILE: ../../../base/power_monitor/power_monitor_device_source_ios.mm -FILE: ../../../base/power_monitor/power_monitor_device_source_mac.mm -FILE: ../../../base/power_monitor/power_monitor_device_source_posix.cc -FILE: ../../../base/power_monitor/power_monitor_device_source_win.cc -FILE: ../../../base/power_monitor/power_monitor_source.cc -FILE: ../../../base/power_monitor/power_monitor_source.h -FILE: ../../../base/power_monitor/power_monitor_unittest.cc -FILE: ../../../base/power_monitor/power_observer.h -FILE: ../../../base/prefs/pref_filter.h -FILE: ../../../base/prefs/pref_service_factory.cc -FILE: ../../../base/prefs/pref_service_factory.h -FILE: ../../../base/prefs/scoped_user_pref_update.cc -FILE: ../../../base/prefs/scoped_user_pref_update.h -FILE: ../../../base/prefs/scoped_user_pref_update_unittest.cc -FILE: ../../../base/process/launch.h -FILE: ../../../base/process/process_info_linux.cc -FILE: ../../../base/process/process_metrics.cc -FILE: ../../../base/process/process_metrics_unittest.cc -FILE: ../../../base/process/process_metrics_unittest_ios.cc -FILE: ../../../base/sequence_checker_unittest.cc -FILE: ../../../base/strings/latin1_string_conversions.cc -FILE: ../../../base/strings/latin1_string_conversions.h -FILE: ../../../base/strings/nullable_string16_unittest.cc -FILE: ../../../base/strings/safe_sprintf.cc -FILE: ../../../base/strings/safe_sprintf.h -FILE: ../../../base/strings/safe_sprintf_unittest.cc -FILE: ../../../base/strings/string16.cc -FILE: ../../../base/strings/string16.h -FILE: ../../../base/strings/string16_unittest.cc -FILE: ../../../base/strings/string_util.cc -FILE: ../../../base/strings/string_util.h -FILE: ../../../base/strings/string_util_constants.cc -FILE: ../../../base/strings/string_util_posix.h -FILE: ../../../base/strings/string_util_unittest.cc -FILE: ../../../base/strings/string_util_win.h -FILE: ../../../base/strings/stringprintf.cc -FILE: ../../../base/strings/stringprintf.h -FILE: ../../../base/strings/stringprintf_unittest.cc -FILE: ../../../base/sync_socket_unittest.cc -FILE: ../../../base/sys_info_internal.h -FILE: ../../../base/timer/elapsed_timer.cc -FILE: ../../../base/timer/elapsed_timer.h -FILE: ../../../base/trace_event/trace_event_memory.cc -FILE: ../../../base/trace_event/trace_event_memory.h -FILE: ../../../base/trace_event/trace_event_memory_unittest.cc -FILE: ../../../base/trace_event/trace_event_system_stats_monitor.cc -FILE: ../../../base/trace_event/trace_event_system_stats_monitor.h -FILE: ../../../base/trace_event/trace_event_system_stats_monitor_unittest.cc -FILE: ../../../base/win/message_window.cc -FILE: ../../../base/win/message_window.h -FILE: ../../../base/win/message_window_unittest.cc ----------------------------------------------------------------------------------------------------- -Copyright 2013 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -ORIGIN: ../../../base/android/java/src/org/chromium/base/annotations/RemovableInRelease.java + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/android/animation_frame_time_histogram.cc -FILE: ../../../base/android/animation_frame_time_histogram.h -FILE: ../../../base/android/apk_assets.cc -FILE: ../../../base/android/apk_assets.h -FILE: ../../../base/android/base_jni_onload.cc -FILE: ../../../base/android/base_jni_onload.h -FILE: ../../../base/android/cxa_demangle_stub.cc -FILE: ../../../base/android/java/src/org/chromium/base/AnimationFrameTimeHistogram.java -FILE: ../../../base/android/java/src/org/chromium/base/Log.java -FILE: ../../../base/android/java/src/org/chromium/base/PackageUtils.java -FILE: ../../../base/android/java/src/org/chromium/base/annotations/RemovableInRelease.java -FILE: ../../../base/android/java/src/org/chromium/base/library_loader/LegacyLinker.java -FILE: ../../../base/android/java/src/org/chromium/base/library_loader/Linker.java -FILE: ../../../base/android/java/src/org/chromium/base/metrics/RecordUserAction.java -FILE: ../../../base/android/java_runtime.cc -FILE: ../../../base/android/java_runtime.h -FILE: ../../../base/android/junit/src/org/chromium/base/BaseChromiumApplicationTest.java -FILE: ../../../base/android/junit/src/org/chromium/base/LogTest.java -FILE: ../../../base/android/library_loader/library_prefetcher.cc -FILE: ../../../base/android/library_loader/library_prefetcher.h -FILE: ../../../base/android/library_loader/library_prefetcher_unittest.cc -FILE: ../../../base/android/record_user_action.cc -FILE: ../../../base/android/record_user_action.h -FILE: ../../../base/containers/scoped_ptr_hash_map_unittest.cc -FILE: ../../../base/containers/scoped_ptr_map.h -FILE: ../../../base/containers/scoped_ptr_map_unittest.cc -FILE: ../../../base/files/file_tracing.cc -FILE: ../../../base/files/file_tracing.h -FILE: ../../../base/ios/ns_error_util.h -FILE: ../../../base/ios/ns_error_util.mm -FILE: ../../../base/mac/call_with_eh_frame.cc -FILE: ../../../base/mac/call_with_eh_frame.h -FILE: ../../../base/mac/call_with_eh_frame_asm.S -FILE: ../../../base/mac/call_with_eh_frame_unittest.mm -FILE: ../../../base/memory/discardable_memory_allocator.cc -FILE: ../../../base/memory/discardable_memory_allocator.h -FILE: ../../../base/memory/memory_pressure_monitor.cc -FILE: ../../../base/memory/memory_pressure_monitor.h -FILE: ../../../base/memory/memory_pressure_monitor_mac.cc -FILE: ../../../base/memory/memory_pressure_monitor_mac.h -FILE: ../../../base/memory/memory_pressure_monitor_mac_unittest.cc -FILE: ../../../base/memory/memory_pressure_monitor_win.cc -FILE: ../../../base/memory/memory_pressure_monitor_win.h -FILE: ../../../base/memory/memory_pressure_monitor_win_unittest.cc -FILE: ../../../base/memory/shared_memory_handle.h -FILE: ../../../base/memory/shared_memory_handle_mac.cc -FILE: ../../../base/metrics/histogram_macros_unittest.cc -FILE: ../../../base/process/process_mac.cc -FILE: ../../../base/profiler/native_stack_sampler.cc -FILE: ../../../base/profiler/native_stack_sampler.h -FILE: ../../../base/profiler/stack_sampling_profiler.cc -FILE: ../../../base/profiler/stack_sampling_profiler.h -FILE: ../../../base/profiler/stack_sampling_profiler_posix.cc -FILE: ../../../base/profiler/stack_sampling_profiler_unittest.cc -FILE: ../../../base/profiler/stack_sampling_profiler_win.cc -FILE: ../../../base/strings/pattern.cc -FILE: ../../../base/strings/pattern.h -FILE: ../../../base/strings/pattern_unittest.cc -FILE: ../../../base/sys_info_win.cc -FILE: ../../../base/threading/platform_thread_internal_posix.cc -FILE: ../../../base/threading/platform_thread_internal_posix.h -FILE: ../../../base/trace_event/java_heap_dump_provider_android.cc -FILE: ../../../base/trace_event/java_heap_dump_provider_android.h -FILE: ../../../base/trace_event/java_heap_dump_provider_android_unittest.cc -FILE: ../../../base/trace_event/malloc_dump_provider.cc -FILE: ../../../base/trace_event/malloc_dump_provider.h -FILE: ../../../base/trace_event/memory_allocator_dump.cc -FILE: ../../../base/trace_event/memory_allocator_dump.h -FILE: ../../../base/trace_event/memory_allocator_dump_guid.cc -FILE: ../../../base/trace_event/memory_allocator_dump_guid.h -FILE: ../../../base/trace_event/memory_allocator_dump_unittest.cc -FILE: ../../../base/trace_event/memory_dump_manager.cc -FILE: ../../../base/trace_event/memory_dump_manager.h -FILE: ../../../base/trace_event/memory_dump_manager_unittest.cc -FILE: ../../../base/trace_event/memory_dump_provider.h -FILE: ../../../base/trace_event/memory_dump_request_args.cc -FILE: ../../../base/trace_event/memory_dump_request_args.h -FILE: ../../../base/trace_event/memory_dump_session_state.cc -FILE: ../../../base/trace_event/memory_dump_session_state.h -FILE: ../../../base/trace_event/process_memory_dump.cc -FILE: ../../../base/trace_event/process_memory_dump.h -FILE: ../../../base/trace_event/process_memory_dump_unittest.cc -FILE: ../../../base/trace_event/process_memory_maps.cc -FILE: ../../../base/trace_event/process_memory_maps.h -FILE: ../../../base/trace_event/process_memory_maps_dump_provider.cc -FILE: ../../../base/trace_event/process_memory_maps_dump_provider.h -FILE: ../../../base/trace_event/process_memory_maps_dump_provider_unittest.cc -FILE: ../../../base/trace_event/process_memory_totals.cc -FILE: ../../../base/trace_event/process_memory_totals.h -FILE: ../../../base/trace_event/process_memory_totals_dump_provider.cc -FILE: ../../../base/trace_event/process_memory_totals_dump_provider.h -FILE: ../../../base/trace_event/process_memory_totals_dump_provider_unittest.cc -FILE: ../../../base/trace_event/trace_event_etw_export_win.cc -FILE: ../../../base/trace_event/trace_event_etw_export_win.h -FILE: ../../../base/trace_event/trace_event_memory_overhead.cc -FILE: ../../../base/trace_event/trace_event_memory_overhead.h -FILE: ../../../base/trace_event/winheap_dump_provider_win.cc -FILE: ../../../base/trace_event/winheap_dump_provider_win.h -FILE: ../../../base/trace_event/winheap_dump_provider_win_unittest.cc -FILE: ../../../base/win/pe_image_test.cc ----------------------------------------------------------------------------------------------------- -Copyright 2015 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -ORIGIN: ../../../base/android/jni_generator/sample_for_tests.h + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/android/jni_generator/sample_for_tests.h -FILE: ../../../base/debug/crash_logging_unittest.cc -FILE: ../../../base/debug/proc_maps_linux.cc -FILE: ../../../base/debug/proc_maps_linux.h -FILE: ../../../base/debug/proc_maps_linux_unittest.cc -FILE: ../../../base/deferred_sequenced_task_runner.cc -FILE: ../../../base/deferred_sequenced_task_runner.h -FILE: ../../../base/deferred_sequenced_task_runner_unittest.cc -FILE: ../../../base/files/file_enumerator.cc -FILE: ../../../base/files/file_enumerator_posix.cc -FILE: ../../../base/files/file_enumerator_win.cc -FILE: ../../../base/i18n/i18n_constants.h -FILE: ../../../base/i18n/string_compare.cc -FILE: ../../../base/i18n/string_compare.h -FILE: ../../../base/json/string_escape_unittest.cc -FILE: ../../../base/mac/launch_services_util.h -FILE: ../../../base/mac/scoped_block.h -FILE: ../../../base/memory/discardable_memory.h -FILE: ../../../base/posix/unix_domain_socket_linux_unittest.cc -FILE: ../../../base/process/internal_linux.h -FILE: ../../../base/process/kill.cc -FILE: ../../../base/process/kill.h -FILE: ../../../base/process/kill_mac.cc -FILE: ../../../base/process/kill_posix.cc -FILE: ../../../base/process/kill_win.cc -FILE: ../../../base/process/launch.cc -FILE: ../../../base/process/memory.h -FILE: ../../../base/process/memory_linux.cc -FILE: ../../../base/process/memory_mac.mm -FILE: ../../../base/process/memory_stubs.cc -FILE: ../../../base/process/memory_win.cc -FILE: ../../../base/process/process_handle.h -FILE: ../../../base/process/process_handle_linux.cc -FILE: ../../../base/process/process_handle_mac.cc -FILE: ../../../base/process/process_handle_posix.cc -FILE: ../../../base/process/process_handle_win.cc -FILE: ../../../base/process/process_iterator.cc -FILE: ../../../base/process/process_iterator.h -FILE: ../../../base/process/process_iterator_freebsd.cc -FILE: ../../../base/process/process_iterator_linux.cc -FILE: ../../../base/process/process_iterator_mac.cc -FILE: ../../../base/process/process_iterator_openbsd.cc -FILE: ../../../base/process/process_iterator_win.cc -FILE: ../../../base/process/process_metrics.h -FILE: ../../../base/process/process_metrics_freebsd.cc -FILE: ../../../base/process/process_metrics_ios.cc -FILE: ../../../base/process/process_metrics_linux.cc -FILE: ../../../base/process/process_metrics_mac.cc -FILE: ../../../base/process/process_metrics_openbsd.cc -FILE: ../../../base/process/process_metrics_posix.cc -FILE: ../../../base/process/process_metrics_win.cc -FILE: ../../../base/scoped_clear_errno.h -FILE: ../../../base/scoped_clear_errno_unittest.cc -FILE: ../../../base/security_unittest.cc -FILE: ../../../base/strings/nullable_string16.cc -FILE: ../../../base/trace_event/trace_event_impl_constants.cc -FILE: ../../../base/win/scoped_propvariant.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 2013 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -ORIGIN: ../../../base/containers/hash_tables.h + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/at_exit.cc -FILE: ../../../base/at_exit.h -FILE: ../../../base/at_exit_unittest.cc -FILE: ../../../base/atomic_ref_count.h -FILE: ../../../base/atomicops_internals_atomicword_compat.h -FILE: ../../../base/atomicops_unittest.cc -FILE: ../../../base/auto_reset.h -FILE: ../../../base/base64.h -FILE: ../../../base/bind.h -FILE: ../../../base/bind_helpers.h -FILE: ../../../base/bind_internal.h -FILE: ../../../base/bind_internal_win.h -FILE: ../../../base/bind_unittest.nc -FILE: ../../../base/build_time.cc -FILE: ../../../base/build_time.h -FILE: ../../../base/build_time_unittest.cc -FILE: ../../../base/callback_forward.h -FILE: ../../../base/callback_unittest.nc -FILE: ../../../base/cancelable_callback.h -FILE: ../../../base/cancelable_callback_unittest.cc -FILE: ../../../base/check_example.cc -FILE: ../../../base/containers/hash_tables.h -FILE: ../../../base/containers/mru_cache.h -FILE: ../../../base/containers/mru_cache_unittest.cc -FILE: ../../../base/debug/alias.cc -FILE: ../../../base/debug/alias.h -FILE: ../../../base/debug/debugger.cc -FILE: ../../../base/debug/debugger.h -FILE: ../../../base/debug/leak_annotations.h -FILE: ../../../base/debug/leak_tracker_unittest.cc -FILE: ../../../base/debug/stack_trace_unittest.cc -FILE: ../../../base/environment.h -FILE: ../../../base/environment_unittest.cc -FILE: ../../../base/file_version_info.h -FILE: ../../../base/file_version_info_mac.h -FILE: ../../../base/file_version_info_unittest.cc -FILE: ../../../base/file_version_info_win.cc -FILE: ../../../base/file_version_info_win.h -FILE: ../../../base/files/file.cc -FILE: ../../../base/files/file_path_watcher.cc -FILE: ../../../base/files/file_path_watcher_win.cc -FILE: ../../../base/files/file_util_linux.cc -FILE: ../../../base/files/important_file_writer.cc -FILE: ../../../base/files/scoped_temp_dir.cc -FILE: ../../../base/files/scoped_temp_dir.h -FILE: ../../../base/files/scoped_temp_dir_unittest.cc -FILE: ../../../base/hash.h -FILE: ../../../base/i18n/base_i18n_export.h -FILE: ../../../base/i18n/bidi_line_iterator.cc -FILE: ../../../base/i18n/bidi_line_iterator.h -FILE: ../../../base/i18n/break_iterator.cc -FILE: ../../../base/i18n/break_iterator.h -FILE: ../../../base/i18n/break_iterator_unittest.cc -FILE: ../../../base/i18n/case_conversion.cc -FILE: ../../../base/i18n/case_conversion.h -FILE: ../../../base/i18n/case_conversion_unittest.cc -FILE: ../../../base/i18n/char_iterator.cc -FILE: ../../../base/i18n/char_iterator.h -FILE: ../../../base/i18n/char_iterator_unittest.cc -FILE: ../../../base/i18n/i18n_constants.cc -FILE: ../../../base/i18n/icu_encoding_detection.cc -FILE: ../../../base/i18n/icu_encoding_detection.h -FILE: ../../../base/i18n/icu_string_conversions.h -FILE: ../../../base/i18n/icu_string_conversions_unittest.cc -FILE: ../../../base/i18n/icu_util.h -FILE: ../../../base/i18n/number_formatting.h -FILE: ../../../base/i18n/number_formatting_unittest.cc -FILE: ../../../base/i18n/rtl.cc -FILE: ../../../base/i18n/rtl.h -FILE: ../../../base/i18n/rtl_unittest.cc -FILE: ../../../base/i18n/string_search.cc -FILE: ../../../base/i18n/string_search.h -FILE: ../../../base/i18n/string_search_unittest.cc -FILE: ../../../base/i18n/time_formatting.cc -FILE: ../../../base/i18n/time_formatting.h -FILE: ../../../base/i18n/time_formatting_unittest.cc -FILE: ../../../base/id_map.h -FILE: ../../../base/id_map_unittest.cc -FILE: ../../../base/json/string_escape.h -FILE: ../../../base/lazy_instance.cc -FILE: ../../../base/logging_unittest.cc -FILE: ../../../base/logging_win.cc -FILE: ../../../base/mac/objc_property_releaser.h -FILE: ../../../base/mac/objc_property_releaser.mm -FILE: ../../../base/mac/objc_property_releaser_unittest.mm -FILE: ../../../base/mac/os_crash_dumps.h -FILE: ../../../base/mac/scoped_nsautorelease_pool.h -FILE: ../../../base/mac/scoped_nsexception_enabler.h -FILE: ../../../base/mac/scoped_sending_event.mm -FILE: ../../../base/mac/scoped_sending_event_unittest.mm -FILE: ../../../base/md5.cc -FILE: ../../../base/md5.h -FILE: ../../../base/md5_unittest.cc -FILE: ../../../base/memory/linked_ptr.h -FILE: ../../../base/memory/raw_scoped_refptr_mismatch_checker.h -FILE: ../../../base/memory/ref_counted.cc -FILE: ../../../base/memory/ref_counted_memory_unittest.cc -FILE: ../../../base/memory/shared_memory_android.cc -FILE: ../../../base/memory/shared_memory_win.cc -FILE: ../../../base/memory/singleton.cc -FILE: ../../../base/memory/singleton.h -FILE: ../../../base/memory/singleton_objc.h -FILE: ../../../base/memory/weak_ptr.cc -FILE: ../../../base/native_library.h -FILE: ../../../base/native_library_mac.mm -FILE: ../../../base/native_library_posix.cc -FILE: ../../../base/native_library_win.cc -FILE: ../../../base/nix/mime_util_xdg.h -FILE: ../../../base/observer_list.h -FILE: ../../../base/pending_task.cc -FILE: ../../../base/pending_task.h -FILE: ../../../base/posix/file_descriptor_shuffle.cc -FILE: ../../../base/posix/file_descriptor_shuffle.h -FILE: ../../../base/posix/safe_strerror.h -FILE: ../../../base/posix/unix_domain_socket_linux.cc -FILE: ../../../base/posix/unix_domain_socket_linux.h -FILE: ../../../base/prefs/mock_pref_change_callback.cc -FILE: ../../../base/prefs/mock_pref_change_callback.h -FILE: ../../../base/prefs/pref_member_unittest.cc -FILE: ../../../base/prefs/pref_notifier.h -FILE: ../../../base/prefs/pref_notifier_impl.h -FILE: ../../../base/prefs/pref_notifier_impl_unittest.cc -FILE: ../../../base/prefs/pref_store_observer_mock.cc -FILE: ../../../base/prefs/pref_store_observer_mock.h -FILE: ../../../base/prefs/pref_value_map.cc -FILE: ../../../base/prefs/pref_value_map.h -FILE: ../../../base/prefs/pref_value_map_unittest.cc -FILE: ../../../base/process/process_handle_freebsd.cc -FILE: ../../../base/process/process_handle_openbsd.cc -FILE: ../../../base/process/process_linux.cc -FILE: ../../../base/process/process_win.cc -FILE: ../../../base/profiler/scoped_profile.cc -FILE: ../../../base/profiler/scoped_profile.h -FILE: ../../../base/rand_util.cc -FILE: ../../../base/rand_util_unittest.cc -FILE: ../../../base/scoped_native_library.cc -FILE: ../../../base/scoped_native_library.h -FILE: ../../../base/scoped_native_library_unittest.cc -FILE: ../../../base/sha1.h -FILE: ../../../base/sha1_portable.cc -FILE: ../../../base/sha1_unittest.cc -FILE: ../../../base/sha1_win.cc -FILE: ../../../base/stl_util.h -FILE: ../../../base/strings/string_tokenizer.h -FILE: ../../../base/strings/sys_string_conversions_unittest.cc -FILE: ../../../base/strings/utf_offset_string_conversions.cc -FILE: ../../../base/strings/utf_offset_string_conversions.h -FILE: ../../../base/strings/utf_offset_string_conversions_unittest.cc -FILE: ../../../base/strings/utf_string_conversion_utils.h -FILE: ../../../base/strings/utf_string_conversions.h -FILE: ../../../base/synchronization/cancellation_flag.cc -FILE: ../../../base/synchronization/cancellation_flag.h -FILE: ../../../base/synchronization/cancellation_flag_unittest.cc -FILE: ../../../base/synchronization/condition_variable.h -FILE: ../../../base/synchronization/condition_variable_posix.cc -FILE: ../../../base/synchronization/condition_variable_win.cc -FILE: ../../../base/synchronization/lock.cc -FILE: ../../../base/synchronization/lock.h -FILE: ../../../base/synchronization/lock_impl.h -FILE: ../../../base/synchronization/lock_impl_posix.cc -FILE: ../../../base/synchronization/lock_impl_win.cc -FILE: ../../../base/synchronization/waitable_event_watcher_win.cc -FILE: ../../../base/synchronization/waitable_event_win.cc -FILE: ../../../base/sys_info_freebsd.cc -FILE: ../../../base/sys_info_linux.cc -FILE: ../../../base/sys_info_openbsd.cc -FILE: ../../../base/sys_info_posix.cc -FILE: ../../../base/template_util.h -FILE: ../../../base/threading/post_task_and_reply_impl.cc -FILE: ../../../base/threading/post_task_and_reply_impl.h -FILE: ../../../base/threading/simple_thread.h -FILE: ../../../base/threading/thread_checker_impl.cc -FILE: ../../../base/threading/thread_checker_impl.h -FILE: ../../../base/threading/thread_local.h -FILE: ../../../base/threading/thread_local_posix.cc -FILE: ../../../base/timer/hi_res_timer_manager.h -FILE: ../../../base/timer/hi_res_timer_manager_posix.cc -FILE: ../../../base/timer/hi_res_timer_manager_win.cc -FILE: ../../../base/trace_event/trace_event_win_unittest.cc -FILE: ../../../base/tuple.h -FILE: ../../../base/vlog.h -FILE: ../../../base/win/enum_variant.cc -FILE: ../../../base/win/enum_variant.h -FILE: ../../../base/win/enum_variant_unittest.cc -FILE: ../../../base/win/event_trace_controller.h -FILE: ../../../base/win/event_trace_provider.h -FILE: ../../../base/win/i18n.h -FILE: ../../../base/win/iat_patch_function.cc -FILE: ../../../base/win/iat_patch_function.h -FILE: ../../../base/win/iunknown_impl.cc -FILE: ../../../base/win/iunknown_impl_unittest.cc -FILE: ../../../base/win/object_watcher.h -FILE: ../../../base/win/object_watcher_unittest.cc -FILE: ../../../base/win/registry_unittest.cc -FILE: ../../../base/win/resource_util.h -FILE: ../../../base/win/scoped_bstr.h -FILE: ../../../base/win/scoped_co_mem.h -FILE: ../../../base/win/scoped_comptr.h -FILE: ../../../base/win/scoped_comptr_unittest.cc -FILE: ../../../base/win/scoped_select_object.h -FILE: ../../../base/win/scoped_variant.h -FILE: ../../../base/win/scoped_variant_unittest.cc -FILE: ../../../base/win/wrapped_window_proc_unittest.cc ----------------------------------------------------------------------------------------------------- -Copyright (c) 2011 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -ORIGIN: ../../../base/json/string_escape.cc + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/atomicops_internals_x86_msvc.h -FILE: ../../../base/base_paths.cc -FILE: ../../../base/base_paths_mac.h -FILE: ../../../base/debug_message.cc -FILE: ../../../base/json/string_escape.cc -FILE: ../../../base/message_loop/message_pump_default.cc -FILE: ../../../base/strings/string_tokenizer_unittest.cc -FILE: ../../../base/strings/sys_string_conversions_win.cc -FILE: ../../../base/tuple_unittest.cc -FILE: ../../../base/win/resource_util.cc ----------------------------------------------------------------------------------------------------- -Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -ORIGIN: ../../../base/mac/call_with_eh_frame_fallback.cc + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/mac/call_with_eh_frame_fallback.cc ----------------------------------------------------------------------------------------------------- -Copyright 2016 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -ORIGIN: ../../../base/posix/safe_strerror.cc + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/file_descriptor_posix.h -FILE: ../../../base/posix/safe_strerror.cc ----------------------------------------------------------------------------------------------------- -Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -ORIGIN: ../../../base/process/process.h + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/process/process.h -FILE: ../../../base/process/process_posix.cc ----------------------------------------------------------------------------------------------------- -Copyright 2011 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -ORIGIN: ../../../base/trace_event/trace_config.cc + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/move_unittest.cc -FILE: ../../../base/native_library_ios.mm -FILE: ../../../base/trace_event/trace_config.cc -FILE: ../../../base/trace_event/trace_config.h -FILE: ../../../base/trace_event/trace_config_unittest.cc ----------------------------------------------------------------------------------------------------- -Copyright (c) 2015 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: base -ORIGIN: ../../../base/trace_event/trace_event_argument.cc + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/atomicops_internals_portable.h -FILE: ../../../base/trace_event/trace_event_argument.cc -FILE: ../../../base/trace_event/trace_event_argument_unittest.cc ----------------------------------------------------------------------------------------------------- -Copyright (c) 2014 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dmg_fp -ORIGIN: ../../../base/third_party/dmg_fp/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../base/third_party/dmg_fp/float_precision_crash.patch -FILE: ../../../base/third_party/dmg_fp/gcc_64_bit.patch -FILE: ../../../base/third_party/dmg_fp/gcc_warnings.patch -FILE: ../../../base/third_party/dmg_fp/mac_wextra.patch -FILE: ../../../base/third_party/dmg_fp/msvc_warnings.patch ----------------------------------------------------------------------------------------------------- -The author of this software is David M. Gay. - -Copyright (c) 1991, 2000, 2001 by Lucent Technologies. - -Permission to use, copy, modify, and distribute this software for any -purpose without fee is hereby granted, provided that this entire notice -is included in all copies of any software which is or includes a copy -or modification of this software and in all copies of the supporting -documentation for such software. - -THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED -WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY -REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY -OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dmg_fp -ORIGIN: ../../../base/third_party/dmg_fp/dmg_fp.h + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/third_party/dmg_fp/dmg_fp.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 2008 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dmg_fp -ORIGIN: ../../../base/third_party/dmg_fp/dtoa.cc -TYPE: LicenseType.unknown -FILE: ../../../base/third_party/dmg_fp/dtoa.cc ----------------------------------------------------------------------------------------------------- -Copyright (c) 1991, 2000, 2001 by Lucent Technologies. - -Permission to use, copy, modify, and distribute this software for any -purpose without fee is hereby granted, provided that this entire notice -is included in all copies of any software which is or includes a copy -or modification of this software and in all copies of the supporting -documentation for such software. - -THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED -WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY -REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY -OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dmg_fp -ORIGIN: ../../../base/third_party/dmg_fp/g_fmt.cc -TYPE: LicenseType.unknown -FILE: ../../../base/third_party/dmg_fp/g_fmt.cc ----------------------------------------------------------------------------------------------------- -Copyright (c) 1991, 1996 by Lucent Technologies. - -Permission to use, copy, modify, and distribute this software for any -purpose without fee is hereby granted, provided that this entire notice -is included in all copies of any software which is or includes a copy -or modification of this software and in all copies of the supporting -documentation for such software. - -THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED -WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY -REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY -OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dynamic_annotations -ORIGIN: ../../../base/third_party/dynamic_annotations/dynamic_annotations.c -TYPE: LicenseType.bsd -FILE: ../../../base/third_party/dynamic_annotations/dynamic_annotations.c -FILE: ../../../base/third_party/dynamic_annotations/dynamic_annotations.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 2011, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../base/third_party/icu/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../base/third_party/icu/icu_utf.cc -FILE: ../../../base/third_party/icu/icu_utf.h ----------------------------------------------------------------------------------------------------- -ICU License - ICU 1.8.1 and later - -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1995-2009 International Business Machines Corporation and others - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, and/or sell copies of the Software, and to permit persons -to whom the Software is furnished to do so, provided that the above -copyright notice(s) and this permission notice appear in all copies of -the Software and that both the above copyright notice(s) and this -permission notice appear in supporting documentation. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR -HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY -SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF -CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, use -or other dealings in this Software without prior written authorization -of the copyright holder. -==================================================================================================== - -==================================================================================================== -LIBRARY: nspr -ORIGIN: ../../../base/third_party/nspr/prtime.cc -TYPE: LicenseType.unknown -FILE: ../../../base/third_party/nspr/prtime.cc -FILE: ../../../base/third_party/nspr/prtime.h ----------------------------------------------------------------------------------------------------- -Portions are Copyright (C) 2011 Google Inc -***** BEGIN LICENSE BLOCK -Version: MPL 1.1/GPL 2.0/LGPL 2.1 - -The contents of this file are subject to the Mozilla Public License Version -1.1 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at -http://www.mozilla.org/MPL - -Software distributed under the License is distributed on an "AS IS" basis, -WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -for the specific language governing rights and limitations under the -License. - -The Original Code is the Netscape Portable Runtime (NSPR). - -The Initial Developer of the Original Code is -Netscape Communications Corporation. -Portions created by the Initial Developer are Copyright (C) 1998-2000 -the Initial Developer. All Rights Reserved. - -Contributor(s): - -Alternatively, the contents of this file may be used under the terms of -either the GNU General Public License Version 2 or later (the "GPL"), or -the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -in which case the provisions of the GPL or the LGPL are applicable instead -of those above. If you wish to allow use of your version of this file only -under the terms of either the GPL or the LGPL, and not to allow others to -use your version of this file under the terms of the MPL, indicate your -decision by deleting the provisions above and replace them with the notice -and other provisions required by the GPL or the LGPL. If you do not delete -the provisions above, a recipient may use your version of this file under -the terms of any one of the MPL, the GPL or the LGPL. - -***** END LICENSE BLOCK -==================================================================================================== - -==================================================================================================== -LIBRARY: superfasthash -ORIGIN: ../../../base/third_party/superfasthash/superfasthash.c -TYPE: LicenseType.bsd -FILE: ../../../base/third_party/superfasthash/superfasthash.c ----------------------------------------------------------------------------------------------------- -Copyright (c) 2010, Paul Hsieh -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -* Neither my name, Paul Hsieh, nor the names of any other contributors to the - code use may not be used to endorse or promote products derived from this - software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: symbolize -ORIGIN: ../../../base/third_party/symbolize/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../base/third_party/symbolize/DEPS -FILE: ../../../base/third_party/symbolize/demangle.cc -FILE: ../../../base/third_party/symbolize/demangle.h -FILE: ../../../base/third_party/symbolize/symbolize.cc -FILE: ../../../base/third_party/symbolize/symbolize.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 2006, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: xdg_mime -ORIGIN: ../../../base/third_party/xdg_mime/LICENSE -TYPE: LicenseType.lgpl -FILE: ../../../base/third_party/xdg_mime/compile.patch -FILE: ../../../base/third_party/xdg_mime/free_pointer_later.patch -FILE: ../../../base/third_party/xdg_mime/xdgmime.c -FILE: ../../../base/third_party/xdg_mime/xdgmime.h -FILE: ../../../base/third_party/xdg_mime/xdgmimealias.c -FILE: ../../../base/third_party/xdg_mime/xdgmimealias.h -FILE: ../../../base/third_party/xdg_mime/xdgmimecache.c -FILE: ../../../base/third_party/xdg_mime/xdgmimecache.h -FILE: ../../../base/third_party/xdg_mime/xdgmimeglob.c -FILE: ../../../base/third_party/xdg_mime/xdgmimeglob.h -FILE: ../../../base/third_party/xdg_mime/xdgmimeicon.c -FILE: ../../../base/third_party/xdg_mime/xdgmimeicon.h -FILE: ../../../base/third_party/xdg_mime/xdgmimeint.c -FILE: ../../../base/third_party/xdg_mime/xdgmimeint.h -FILE: ../../../base/third_party/xdg_mime/xdgmimemagic.c -FILE: ../../../base/third_party/xdg_mime/xdgmimemagic.h -FILE: ../../../base/third_party/xdg_mime/xdgmimeparent.c -FILE: ../../../base/third_party/xdg_mime/xdgmimeparent.h ----------------------------------------------------------------------------------------------------- -GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - -Copyright (C) 1991, 1999 Free Software Foundation, Inc. -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! -==================================================================================================== - -==================================================================================================== -LIBRARY: xdg_user_dirs -ORIGIN: ../../../base/third_party/xdg_user_dirs/LICENSE -TYPE: LicenseType.mit -FILE: ../../../base/third_party/xdg_user_dirs/xdg_user_dir_lookup.cc -FILE: ../../../base/third_party/xdg_user_dirs/xdg_user_dir_lookup.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 2007 Red Hat, inc - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation files -(the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of the Software, -and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -==================================================================================================== -Total license count: 30