Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(293)

Side by Side Diff: base/BUILD.gn

Issue 1465923002: GN: Merge apk_deps and deps in test() template (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased on formatting change Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/test/BUILD.gn » ('j') | chrome/test/BUILD.gn » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/BUILD.gn » ('j') | chrome/test/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698