| 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 17 matching lines...) Expand all  Loading... | 
| 28     exec_script("//build/gypi_to_gn.py", | 28     exec_script("//build/gypi_to_gn.py", | 
| 29                 [ | 29                 [ | 
| 30                   rebase_path("//chrome/chrome_android_paks.gypi"), | 30                   rebase_path("//chrome/chrome_android_paks.gypi"), | 
| 31                   "--replace=<(PRODUCT_DIR)=$root_out_dir", | 31                   "--replace=<(PRODUCT_DIR)=$root_out_dir", | 
| 32                 ], | 32                 ], | 
| 33                 "scope", | 33                 "scope", | 
| 34                 [ "//chrome/chrome_android_paks.gypi" ]) | 34                 [ "//chrome/chrome_android_paks.gypi" ]) | 
| 35 | 35 | 
| 36 locale_pak_resources("chrome_locale_paks") { | 36 locale_pak_resources("chrome_locale_paks") { | 
| 37   sources = chrome_android_paks_gypi.chrome_android_pak_locale_resources | 37   sources = chrome_android_paks_gypi.chrome_android_pak_locale_resources | 
|  | 38 | 
|  | 39   deps = [ | 
|  | 40     "//chrome:packed_resources", | 
|  | 41   ] | 
| 38 } | 42 } | 
| 39 | 43 | 
| 40 # GYP: //chrome/chrome.gyp:chrome_java (resources part) | 44 # GYP: //chrome/chrome.gyp:chrome_java (resources part) | 
| 41 android_resources("chrome_java_resources") { | 45 android_resources("chrome_java_resources") { | 
| 42   resource_dirs = [ | 46   resource_dirs = [ | 
| 43     "java/res", | 47     "java/res", | 
| 44     "java/res_default", | 48     "java/res_default", | 
| 45   ] | 49   ] | 
| 46   deps = [ | 50   deps = [ | 
| 47     ":chrome_locale_paks", | 51     ":chrome_locale_paks", | 
| (...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 839   apk_name = "ChromePublicTest" | 843   apk_name = "ChromePublicTest" | 
| 840   apk_under_test = ":chrome_public_apk" | 844   apk_under_test = ":chrome_public_apk" | 
| 841   android_manifest = chrome_public_test_apk_manifest | 845   android_manifest = chrome_public_test_apk_manifest | 
| 842   deps = [ | 846   deps = [ | 
| 843     ":chrome_public_test_apk_manifest", | 847     ":chrome_public_test_apk_manifest", | 
| 844     "//chrome/test/android:chrome_staging_test_support_java", | 848     "//chrome/test/android:chrome_staging_test_support_java", | 
| 845     "//chrome/android:chrome_staging_test_java", | 849     "//chrome/android:chrome_staging_test_java", | 
| 846   ] | 850   ] | 
| 847   isolate_file = "../chrome_public_test_apk.isolate" | 851   isolate_file = "../chrome_public_test_apk.isolate" | 
| 848 } | 852 } | 
| OLD | NEW | 
|---|