OLD | NEW |
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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 1311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1322 if (!is_linux || use_ozone) { | 1322 if (!is_linux || use_ozone) { |
1323 sources -= [ "message_loop/message_pump_glib_unittest.cc" ] | 1323 sources -= [ "message_loop/message_pump_glib_unittest.cc" ] |
1324 } | 1324 } |
1325 | 1325 |
1326 if (is_posix || is_ios) { | 1326 if (is_posix || is_ios) { |
1327 sources += [ "message_loop/message_pump_libevent_unittest.cc" ] | 1327 sources += [ "message_loop/message_pump_libevent_unittest.cc" ] |
1328 deps += [ "//third_party/libevent" ] | 1328 deps += [ "//third_party/libevent" ] |
1329 } | 1329 } |
1330 | 1330 |
1331 if (is_android) { | 1331 if (is_android) { |
| 1332 deps += [ |
| 1333 "//testing/android:native_test_native_code", |
| 1334 ] |
1332 set_sources_assignment_filter([]) | 1335 set_sources_assignment_filter([]) |
1333 sources += [ "debug/proc_maps_linux_unittest.cc" ] | 1336 sources += [ "debug/proc_maps_linux_unittest.cc" ] |
1334 set_sources_assignment_filter(sources_assignment_filter) | 1337 set_sources_assignment_filter(sources_assignment_filter) |
1335 } | 1338 } |
1336 } | 1339 } |
1337 | 1340 |
1338 if (is_android) { | 1341 if (is_android) { |
1339 # GYP: //base.gyp:base_jni_headers | 1342 # GYP: //base.gyp:base_jni_headers |
1340 generate_jni("base_jni_headers") { | 1343 generate_jni("base_jni_headers") { |
1341 sources = [ | 1344 sources = [ |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1444 # GYP: //base.gyp:base_unittests_apk | 1447 # GYP: //base.gyp:base_unittests_apk |
1445 unittest_apk("base_unittests_apk") { | 1448 unittest_apk("base_unittests_apk") { |
1446 deps = [ | 1449 deps = [ |
1447 ":base_java", | 1450 ":base_java", |
1448 ":base_java_unittest_support", | 1451 ":base_java_unittest_support", |
1449 ":base_unittests", | 1452 ":base_unittests", |
1450 ] | 1453 ] |
1451 unittests_dep = ":base_unittests" | 1454 unittests_dep = ":base_unittests" |
1452 } | 1455 } |
1453 } | 1456 } |
OLD | NEW |