Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(489)

Side by Side Diff: base/BUILD.gn

Issue 2277863002: Enable loading native libraries with RTLD_DEEPBIND (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/native_library.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 "metrics/sample_map.h", 548 "metrics/sample_map.h",
549 "metrics/sample_vector.cc", 549 "metrics/sample_vector.cc",
550 "metrics/sample_vector.h", 550 "metrics/sample_vector.h",
551 "metrics/sparse_histogram.cc", 551 "metrics/sparse_histogram.cc",
552 "metrics/sparse_histogram.h", 552 "metrics/sparse_histogram.h",
553 "metrics/statistics_recorder.cc", 553 "metrics/statistics_recorder.cc",
554 "metrics/statistics_recorder.h", 554 "metrics/statistics_recorder.h",
555 "metrics/user_metrics.cc", 555 "metrics/user_metrics.cc",
556 "metrics/user_metrics.h", 556 "metrics/user_metrics.h",
557 "metrics/user_metrics_action.h", 557 "metrics/user_metrics_action.h",
558 "native_library.cc",
558 "native_library.h", 559 "native_library.h",
559 "native_library_ios.mm", 560 "native_library_ios.mm",
560 "native_library_mac.mm", 561 "native_library_mac.mm",
561 "native_library_posix.cc", 562 "native_library_posix.cc",
562 "native_library_win.cc", 563 "native_library_win.cc",
563 "nix/mime_util_xdg.cc", 564 "nix/mime_util_xdg.cc",
564 "nix/mime_util_xdg.h", 565 "nix/mime_util_xdg.h",
565 "nix/xdg_util.cc", 566 "nix/xdg_util.cc",
566 "nix/xdg_util.h", 567 "nix/xdg_util.h",
567 "numerics/safe_conversions.h", 568 "numerics/safe_conversions.h",
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
1126 "files/important_file_writer.cc", 1127 "files/important_file_writer.cc",
1127 "files/important_file_writer.h", 1128 "files/important_file_writer.h",
1128 "files/scoped_temp_dir.cc", 1129 "files/scoped_temp_dir.cc",
1129 "memory/discardable_memory.cc", 1130 "memory/discardable_memory.cc",
1130 "memory/discardable_memory.h", 1131 "memory/discardable_memory.h",
1131 "memory/discardable_memory_allocator.cc", 1132 "memory/discardable_memory_allocator.cc",
1132 "memory/discardable_memory_allocator.h", 1133 "memory/discardable_memory_allocator.h",
1133 "memory/discardable_shared_memory.cc", 1134 "memory/discardable_shared_memory.cc",
1134 "memory/discardable_shared_memory.h", 1135 "memory/discardable_shared_memory.h",
1135 "memory/shared_memory_posix.cc", 1136 "memory/shared_memory_posix.cc",
1137 "native_library.cc",
1136 "native_library_posix.cc", 1138 "native_library_posix.cc",
1137 "path_service.cc", 1139 "path_service.cc",
1138 "process/kill.cc", 1140 "process/kill.cc",
1139 "process/kill.h", 1141 "process/kill.h",
1140 "process/memory.cc", 1142 "process/memory.cc",
1141 "process/memory.h", 1143 "process/memory.h",
1142 "process/process_iterator.cc", 1144 "process/process_iterator.cc",
1143 "process/process_iterator.h", 1145 "process/process_iterator.h",
1144 "process/process_metrics.cc", 1146 "process/process_metrics.cc",
1145 "process/process_metrics_posix.cc", 1147 "process/process_metrics_posix.cc",
(...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after
2000 "win/wrapped_window_proc_unittest.cc", 2002 "win/wrapped_window_proc_unittest.cc",
2001 ] 2003 ]
2002 2004
2003 defines = [] 2005 defines = []
2004 2006
2005 deps = [ 2007 deps = [
2006 ":base", 2008 ":base",
2007 ":i18n", 2009 ":i18n",
2008 ":message_loop_tests", 2010 ":message_loop_tests",
2009 "//base/allocator:features", 2011 "//base/allocator:features",
2012 "//base/test:native_library_test_utils",
2010 "//base/test:run_all_base_unittests", 2013 "//base/test:run_all_base_unittests",
2011 "//base/test:test_support", 2014 "//base/test:test_support",
2012 "//base/third_party/dynamic_annotations", 2015 "//base/third_party/dynamic_annotations",
2013 "//testing/gmock", 2016 "//testing/gmock",
2014 "//testing/gtest", 2017 "//testing/gtest",
2015 "//third_party/icu", 2018 "//third_party/icu",
2016 ] 2019 ]
2017 2020
2021 data_deps = [
2022 "//base/test:test_shared_library",
2023 ]
2024
2018 if (is_ios || is_mac) { 2025 if (is_ios || is_mac) {
2019 deps += [ ":base_unittests_arc" ] 2026 deps += [ ":base_unittests_arc" ]
2020 } 2027 }
2021 2028
2022 public_deps = [ 2029 public_deps = [
2023 ":base_unittests_bundle_data", 2030 ":base_unittests_bundle_data",
2024 ] 2031 ]
2025 2032
2026 # Some unittests depend on the ALLOCATOR_SHIM macro. 2033 # Some unittests depend on the ALLOCATOR_SHIM macro.
2027 configs += [ "//base/allocator:allocator_shim_define" ] 2034 configs += [ "//base/allocator:allocator_shim_define" ]
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
2433 android_library("base_java_unittest_support") { 2440 android_library("base_java_unittest_support") {
2434 deps = [ 2441 deps = [
2435 ":base_java", 2442 ":base_java",
2436 ] 2443 ]
2437 java_files = [ 2444 java_files = [
2438 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", 2445 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java",
2439 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", 2446 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java",
2440 ] 2447 ]
2441 } 2448 }
2442 } 2449 }
OLDNEW
« no previous file with comments | « no previous file | base/native_library.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698