| 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/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
| 6 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 1505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1516 "test/data/", | 1516 "test/data/", |
| 1517 ] | 1517 ] |
| 1518 | 1518 |
| 1519 # Allow more direct string conversions on platforms with native utf8 | 1519 # Allow more direct string conversions on platforms with native utf8 |
| 1520 # strings | 1520 # strings |
| 1521 if (is_mac || is_ios || is_chromeos) { | 1521 if (is_mac || is_ios || is_chromeos) { |
| 1522 defines = [ "SYSTEM_NATIVE_UTF8" ] | 1522 defines = [ "SYSTEM_NATIVE_UTF8" ] |
| 1523 } | 1523 } |
| 1524 | 1524 |
| 1525 if (is_android) { | 1525 if (is_android) { |
| 1526 apk_deps = [ | 1526 deps += [ |
| 1527 ":base_java", | 1527 ":base_java", |
| 1528 ":base_java_unittest_support", | 1528 ":base_java_unittest_support", |
| 1529 ] | 1529 ] |
| 1530 | 1530 |
| 1531 # TODO(brettw) I think this should not be here, we should not be using | 1531 # TODO(brettw) I think this should not be here, we should not be using |
| 1532 # isolate files. | 1532 # isolate files. |
| 1533 isolate_file = "base_unittests.isolate" | 1533 isolate_file = "base_unittests.isolate" |
| 1534 } | 1534 } |
| 1535 | 1535 |
| 1536 if (is_ios) { | 1536 if (is_ios) { |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1744 | 1744 |
| 1745 # GYP: //base.gyp:base_java_unittest_support | 1745 # GYP: //base.gyp:base_java_unittest_support |
| 1746 android_library("base_java_unittest_support") { | 1746 android_library("base_java_unittest_support") { |
| 1747 deps = [ | 1747 deps = [ |
| 1748 ":base_java", | 1748 ":base_java", |
| 1749 ] | 1749 ] |
| 1750 java_files = | 1750 java_files = |
| 1751 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1751 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1752 } | 1752 } |
| 1753 } | 1753 } |
| OLD | NEW |