OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
7 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
8 import("//chrome/version.gni") | 8 import("//chrome/version.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//third_party/icu/config.gni") | 10 import("//third_party/icu/config.gni") |
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
593 ] | 593 ] |
594 output = "$target_gen_dir/$target_name.srcjar" | 594 output = "$target_gen_dir/$target_name.srcjar" |
595 base_dir = chrome_version_java_dir | 595 base_dir = chrome_version_java_dir |
596 deps = [ | 596 deps = [ |
597 ":chrome_version_java", | 597 ":chrome_version_java", |
598 ] | 598 ] |
599 } | 599 } |
600 | 600 |
601 #GYP: //chrome/android/chrome_apk.gyp:custom_tabs_service_aidl | 601 #GYP: //chrome/android/chrome_apk.gyp:custom_tabs_service_aidl |
602 android_aidl("custom_tabs_service_aidl") { | 602 android_aidl("custom_tabs_service_aidl") { |
603 import_include = "java/src/org/chromium/chrome/browser/customtabs" | 603 import_include = "java/src/android/support/customtabs" |
604 interface_file = "java/src/org/chromium/chrome/browser/customtabs/common.aidl" | 604 interface_file = "java/src/android/support/customtabs/common.aidl" |
605 sources = [ | 605 sources = [ |
606 "java/src/org/chromium/chrome/browser/customtabs/ICustomTabsConnectionCallba
ck.aidl", | 606 "java/src/android/support/customtabs/ICustomTabsCallback.aidl", |
607 "java/src/org/chromium/chrome/browser/customtabs/ICustomTabsConnectionServic
e.aidl", | 607 "java/src/android/support/customtabs/ICustomTabsService.aidl", |
608 ] | 608 ] |
609 } | 609 } |
610 | 610 |
611 # GYP: //chrome/android/chrome_apk.gyp:chrome_shared_test_java | 611 # GYP: //chrome/android/chrome_apk.gyp:chrome_shared_test_java |
612 android_library("chrome_shared_test_java") { | 612 android_library("chrome_shared_test_java") { |
613 testonly = true | 613 testonly = true |
614 DEPRECATED_java_in_dir = "javatests/src" | 614 DEPRECATED_java_in_dir = "javatests/src" |
615 | 615 |
616 deps = [ | 616 deps = [ |
617 "//base:base_java", | 617 "//base:base_java", |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 # TODO(GYP,cjhopman): Does this need version code/name? | 748 # TODO(GYP,cjhopman): Does this need version code/name? |
749 apk_name = "ChromePublicTest" | 749 apk_name = "ChromePublicTest" |
750 apk_under_test = ":chrome_public_apk" | 750 apk_under_test = ":chrome_public_apk" |
751 android_manifest = chrome_public_test_apk_manifest | 751 android_manifest = chrome_public_test_apk_manifest |
752 deps = [ | 752 deps = [ |
753 ":chrome_public_test_apk_manifest", | 753 ":chrome_public_test_apk_manifest", |
754 "//chrome/android:chrome_shared_test_java", | 754 "//chrome/android:chrome_shared_test_java", |
755 ] | 755 ] |
756 isolate_file = "../chrome_public_test_apk.isolate" | 756 isolate_file = "../chrome_public_test_apk.isolate" |
757 } | 757 } |
OLD | NEW |