| 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 1418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |