| 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 1388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1399 # TODO(GYP): dep on copy_test_data_ios action. | 1399 # TODO(GYP): dep on copy_test_data_ios action. |
| 1400 } | 1400 } |
| 1401 | 1401 |
| 1402 if (is_linux) { | 1402 if (is_linux) { |
| 1403 sources -= [ "file_version_info_unittest.cc" ] | 1403 sources -= [ "file_version_info_unittest.cc" ] |
| 1404 sources += [ "nix/xdg_util_unittest.cc" ] | 1404 sources += [ "nix/xdg_util_unittest.cc" ] |
| 1405 defines = [ "USE_SYMBOLIZE" ] | 1405 defines = [ "USE_SYMBOLIZE" ] |
| 1406 configs += [ "//build/config/linux:glib" ] | 1406 configs += [ "//build/config/linux:glib" ] |
| 1407 } | 1407 } |
| 1408 | 1408 |
| 1409 if (!is_linux || use_ozone) { | 1409 if (!is_linux) { |
| 1410 sources -= [ "message_loop/message_pump_glib_unittest.cc" ] | 1410 sources -= [ "message_loop/message_pump_glib_unittest.cc" ] |
| 1411 } | 1411 } |
| 1412 | 1412 |
| 1413 if (is_posix || is_ios) { | 1413 if (is_posix || is_ios) { |
| 1414 sources += [ "message_loop/message_pump_libevent_unittest.cc" ] | 1414 sources += [ "message_loop/message_pump_libevent_unittest.cc" ] |
| 1415 deps += [ "//third_party/libevent" ] | 1415 deps += [ "//third_party/libevent" ] |
| 1416 } | 1416 } |
| 1417 | 1417 |
| 1418 if (is_android) { | 1418 if (is_android) { |
| 1419 deps += [ "//testing/android:native_test_native_code" ] | 1419 deps += [ "//testing/android:native_test_native_code" ] |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1530 # GYP: //base.gyp:base_unittests_apk | 1530 # GYP: //base.gyp:base_unittests_apk |
| 1531 unittest_apk("base_unittests_apk") { | 1531 unittest_apk("base_unittests_apk") { |
| 1532 deps = [ | 1532 deps = [ |
| 1533 ":base_java", | 1533 ":base_java", |
| 1534 ":base_java_unittest_support", | 1534 ":base_java_unittest_support", |
| 1535 ":base_unittests", | 1535 ":base_unittests", |
| 1536 ] | 1536 ] |
| 1537 unittests_dep = ":base_unittests" | 1537 unittests_dep = ":base_unittests" |
| 1538 } | 1538 } |
| 1539 } | 1539 } |
| OLD | NEW |