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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 ] | 583 ] |
584 output = "$target_gen_dir/$target_name.srcjar" | 584 output = "$target_gen_dir/$target_name.srcjar" |
585 base_dir = chrome_version_java_dir | 585 base_dir = chrome_version_java_dir |
586 deps = [ | 586 deps = [ |
587 ":chrome_version_java", | 587 ":chrome_version_java", |
588 ] | 588 ] |
589 } | 589 } |
590 | 590 |
591 #GYP: //chrome/android/chrome_apk.gyp:custom_tabs_service_aidl | 591 #GYP: //chrome/android/chrome_apk.gyp:custom_tabs_service_aidl |
592 android_aidl("custom_tabs_service_aidl") { | 592 android_aidl("custom_tabs_service_aidl") { |
593 import_include = "java/src/org/chromium/chrome/browser/customtabs" | 593 import_include = "java/src/android/support/customtabs" |
594 interface_file = "java/src/org/chromium/chrome/browser/customtabs/common.aidl" | 594 interface_file = "java/src/android/support/customtabs/common.aidl" |
595 sources = [ | 595 sources = [ |
596 "java/src/org/chromium/chrome/browser/customtabs/ICustomTabsConnectionCallba
ck.aidl", | 596 "java/src/android/support/customtabs/ICustomTabsCallback.aidl", |
597 "java/src/org/chromium/chrome/browser/customtabs/ICustomTabsConnectionServic
e.aidl", | 597 "java/src/android/support/customtabs/ICustomTabsService.aidl", |
598 ] | 598 ] |
599 } | 599 } |
600 | 600 |
601 # GYP: //chrome/android/chrome_apk.gyp:chrome_shared_test_java | 601 # GYP: //chrome/android/chrome_apk.gyp:chrome_shared_test_java |
602 android_library("chrome_shared_test_java") { | 602 android_library("chrome_shared_test_java") { |
603 testonly = true | 603 testonly = true |
604 DEPRECATED_java_in_dir = "javatests/src" | 604 DEPRECATED_java_in_dir = "javatests/src" |
605 | 605 |
606 deps = [ | 606 deps = [ |
607 "//base:base_java", | 607 "//base:base_java", |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
741 # TODO(GYP,cjhopman): Does this need version code/name? | 741 # TODO(GYP,cjhopman): Does this need version code/name? |
742 apk_name = "ChromePublicTest" | 742 apk_name = "ChromePublicTest" |
743 apk_under_test = ":chrome_public_apk" | 743 apk_under_test = ":chrome_public_apk" |
744 android_manifest = chrome_public_test_apk_manifest | 744 android_manifest = chrome_public_test_apk_manifest |
745 deps = [ | 745 deps = [ |
746 ":chrome_public_test_apk_manifest", | 746 ":chrome_public_test_apk_manifest", |
747 "//chrome/android:chrome_shared_test_java", | 747 "//chrome/android:chrome_shared_test_java", |
748 ] | 748 ] |
749 isolate_file = "../chrome_public_test_apk.isolate" | 749 isolate_file = "../chrome_public_test_apk.isolate" |
750 } | 750 } |
OLD | NEW |