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

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') | base/native_library.h » ('J')
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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 "files/important_file_writer.cc", 1129 "files/important_file_writer.cc",
1129 "files/important_file_writer.h", 1130 "files/important_file_writer.h",
1130 "files/scoped_temp_dir.cc", 1131 "files/scoped_temp_dir.cc",
1131 "memory/discardable_memory.cc", 1132 "memory/discardable_memory.cc",
1132 "memory/discardable_memory.h", 1133 "memory/discardable_memory.h",
1133 "memory/discardable_memory_allocator.cc", 1134 "memory/discardable_memory_allocator.cc",
1134 "memory/discardable_memory_allocator.h", 1135 "memory/discardable_memory_allocator.h",
1135 "memory/discardable_shared_memory.cc", 1136 "memory/discardable_shared_memory.cc",
1136 "memory/discardable_shared_memory.h", 1137 "memory/discardable_shared_memory.h",
1137 "memory/shared_memory_posix.cc", 1138 "memory/shared_memory_posix.cc",
1139 "native_library.cc",
1138 "native_library_posix.cc", 1140 "native_library_posix.cc",
1139 "path_service.cc", 1141 "path_service.cc",
1140 "process/kill.cc", 1142 "process/kill.cc",
1141 "process/kill.h", 1143 "process/kill.h",
1142 "process/memory.cc", 1144 "process/memory.cc",
1143 "process/memory.h", 1145 "process/memory.h",
1144 "process/process_iterator.cc", 1146 "process/process_iterator.cc",
1145 "process/process_iterator.h", 1147 "process/process_iterator.h",
1146 "process/process_metrics.cc", 1148 "process/process_metrics.cc",
1147 "process/process_metrics_posix.cc", 1149 "process/process_metrics_posix.cc",
(...skipping 864 matching lines...) Expand 10 before | Expand all | Expand 10 after
2012 "win/wrapped_window_proc_unittest.cc", 2014 "win/wrapped_window_proc_unittest.cc",
2013 ] 2015 ]
2014 2016
2015 defines = [] 2017 defines = []
2016 2018
2017 deps = [ 2019 deps = [
2018 ":base", 2020 ":base",
2019 ":i18n", 2021 ":i18n",
2020 ":message_loop_tests", 2022 ":message_loop_tests",
2021 "//base/allocator:features", 2023 "//base/allocator:features",
2024 "//base/test:native_library_test_utils",
2022 "//base/test:run_all_base_unittests", 2025 "//base/test:run_all_base_unittests",
2023 "//base/test:test_support", 2026 "//base/test:test_support",
2024 "//base/third_party/dynamic_annotations", 2027 "//base/third_party/dynamic_annotations",
2025 "//testing/gmock", 2028 "//testing/gmock",
2026 "//testing/gtest", 2029 "//testing/gtest",
2027 "//third_party/icu", 2030 "//third_party/icu",
2028 ] 2031 ]
2029 2032
2033 data_deps = [
2034 "//base/test:test_shared_library",
2035 ]
2036
2030 if (is_ios || is_mac) { 2037 if (is_ios || is_mac) {
2031 deps += [ ":base_unittests_arc" ] 2038 deps += [ ":base_unittests_arc" ]
2032 } 2039 }
2033 2040
2034 public_deps = [ 2041 public_deps = [
2035 ":base_unittests_bundle_data", 2042 ":base_unittests_bundle_data",
2036 ] 2043 ]
2037 2044
2038 # Some unittests depend on the ALLOCATOR_SHIM macro. 2045 # Some unittests depend on the ALLOCATOR_SHIM macro.
2039 configs += [ "//base/allocator:allocator_shim_define" ] 2046 configs += [ "//base/allocator:allocator_shim_define" ]
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
2445 android_library("base_java_unittest_support") { 2452 android_library("base_java_unittest_support") {
2446 deps = [ 2453 deps = [
2447 ":base_java", 2454 ":base_java",
2448 ] 2455 ]
2449 java_files = [ 2456 java_files = [
2450 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", 2457 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java",
2451 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", 2458 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java",
2452 ] 2459 ]
2453 } 2460 }
2454 } 2461 }
OLDNEW
« no previous file with comments | « no previous file | base/native_library.h » ('j') | base/native_library.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698