| Index: base/BUILD.gn
|
| diff --git a/base/BUILD.gn b/base/BUILD.gn
|
| index 12d6d7c7a35114408ccccfb95e045848624de796..46397c1c3b50307bf5cac6be01cf128a0ea331a7 100644
|
| --- a/base/BUILD.gn
|
| +++ b/base/BUILD.gn
|
| @@ -555,6 +555,7 @@ component("base") {
|
| "metrics/user_metrics.cc",
|
| "metrics/user_metrics.h",
|
| "metrics/user_metrics_action.h",
|
| + "native_library.cc",
|
| "native_library.h",
|
| "native_library_ios.mm",
|
| "native_library_mac.mm",
|
| @@ -1135,6 +1136,7 @@ component("base") {
|
| "memory/discardable_shared_memory.cc",
|
| "memory/discardable_shared_memory.h",
|
| "memory/shared_memory_posix.cc",
|
| + "native_library.cc",
|
| "native_library_posix.cc",
|
| "path_service.cc",
|
| "process/kill.cc",
|
| @@ -2019,6 +2021,7 @@ test("base_unittests") {
|
| ":i18n",
|
| ":message_loop_tests",
|
| "//base/allocator:features",
|
| + "//base/test:native_library_test_utils",
|
| "//base/test:run_all_base_unittests",
|
| "//base/test:test_support",
|
| "//base/third_party/dynamic_annotations",
|
| @@ -2027,6 +2030,10 @@ test("base_unittests") {
|
| "//third_party/icu",
|
| ]
|
|
|
| + data_deps = [
|
| + "//base/test:test_shared_library",
|
| + ]
|
| +
|
| if (is_ios || is_mac) {
|
| deps += [ ":base_unittests_arc" ]
|
| }
|
|
|