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