| 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 1399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1410 ] | 1410 ] |
| 1411 | 1411 |
| 1412 # A new version of NativeLibraries.java (with the actual correct values) | 1412 # A new version of NativeLibraries.java (with the actual correct values) |
| 1413 # will be created when creating an apk. | 1413 # will be created when creating an apk. |
| 1414 jar_excluded_patterns = [ | 1414 jar_excluded_patterns = [ |
| 1415 "*/NativeLibraries.class", | 1415 "*/NativeLibraries.class", |
| 1416 "*/NativeLibraries##*.class", | 1416 "*/NativeLibraries##*.class", |
| 1417 ] | 1417 ] |
| 1418 } | 1418 } |
| 1419 | 1419 |
| 1420 android_library("base_java_test_support") { |
| 1421 deps = [ |
| 1422 ":base_java", |
| 1423 ] |
| 1424 DEPRECATED_java_in_dir = "test/android/javatests/src" |
| 1425 } |
| 1426 |
| 1420 java_cpp_template("base_java_application_state") { | 1427 java_cpp_template("base_java_application_state") { |
| 1421 sources = [ | 1428 sources = [ |
| 1422 "android/java/src/org/chromium/base/ApplicationState.template", | 1429 "android/java/src/org/chromium/base/ApplicationState.template", |
| 1423 ] | 1430 ] |
| 1424 inputs = [ | 1431 inputs = [ |
| 1425 "android/application_state_list.h" | 1432 "android/application_state_list.h" |
| 1426 ] | 1433 ] |
| 1427 | 1434 |
| 1428 package_name = "org/chromium/base" | 1435 package_name = "org/chromium/base" |
| 1429 } | 1436 } |
| (...skipping 25 matching lines...) Expand all Loading... |
| 1455 | 1462 |
| 1456 unittest_apk("base_unittests_apk") { | 1463 unittest_apk("base_unittests_apk") { |
| 1457 deps = [ | 1464 deps = [ |
| 1458 ":base_java", | 1465 ":base_java", |
| 1459 ":base_java_unittest_support", | 1466 ":base_java_unittest_support", |
| 1460 ":base_unittests", | 1467 ":base_unittests", |
| 1461 ] | 1468 ] |
| 1462 unittests_dep = ":base_unittests" | 1469 unittests_dep = ":base_unittests" |
| 1463 } | 1470 } |
| 1464 } | 1471 } |
| OLD | NEW |