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

Side by Side Diff: base/BUILD.gn

Issue 379333003: Add beginnings of android_apk and unittest_apk templates (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-filearg
Patch Set: Rebase Created 6 years, 4 months 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 | build/android/gyp/jar_toc.py » ('j') | no next file with comments »
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/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 1418 matching lines...) Expand 10 before | Expand all | Expand 10 after
1429 sources = [ 1429 sources = [
1430 "android/java/templates/NativeLibraries.template", 1430 "android/java/templates/NativeLibraries.template",
1431 ] 1431 ]
1432 inputs = [ 1432 inputs = [
1433 "android/java/templates/native_libraries_array.h", 1433 "android/java/templates/native_libraries_array.h",
1434 ] 1434 ]
1435 1435
1436 package_name = "org/chromium/base/library_loader" 1436 package_name = "org/chromium/base/library_loader"
1437 include_path = "android/java/templates" 1437 include_path = "android/java/templates"
1438 } 1438 }
1439
1440 android_library("base_java_unittest_support") {
1441 deps = [":base_java"]
1442 java_files = [
1443 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java"
1444 ]
1445 }
1446
1447 unittest_apk("base_unittests_apk") {
1448 deps = [
1449 ":base_java",
1450 ":base_java_unittest_support",
1451 ":base_unittests",
1452 ]
1453 unittests_dep = ":base_unittests"
1454 }
1439 } 1455 }
OLDNEW
« no previous file with comments | « no previous file | build/android/gyp/jar_toc.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698