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_overrides/v8.gni") | 7 import("//build_overrides/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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 if (icu_use_data_file) { | 355 if (icu_use_data_file) { |
356 sources += [ "$root_build_dir/icudtl.dat" ] | 356 sources += [ "$root_build_dir/icudtl.dat" ] |
357 } | 357 } |
358 deps = [ | 358 deps = [ |
359 "//chrome:packed_extra_resources", | 359 "//chrome:packed_extra_resources", |
360 "//chrome:packed_resources", | 360 "//chrome:packed_resources", |
361 "//third_party/icu:icudata", | 361 "//third_party/icu:icudata", |
362 ] | 362 ] |
363 | 363 |
364 if (v8_use_external_startup_data) { | 364 if (v8_use_external_startup_data) { |
365 renaming_sources = v8_external_startup_data_renaming_sources | 365 sources += [ |
366 renaming_destinations = v8_external_startup_data_renaming_destinations | 366 "$root_build_dir/natives_blob.bin", |
| 367 "$root_build_dir/snapshot_blob.bin", |
| 368 ] |
367 deps += [ "//v8" ] | 369 deps += [ "//v8" ] |
368 } | 370 } |
369 | 371 |
370 sources += [ "$root_build_dir/resources.pak" ] | 372 sources += [ "$root_build_dir/resources.pak" ] |
371 } | 373 } |
372 | 374 |
373 # GYP: //chrome/android/chrome_apk.gyp:chrome_apk_manifest | 375 # GYP: //chrome/android/chrome_apk.gyp:chrome_apk_manifest |
374 jinja_template("chrome_public_apk_manifest") { | 376 jinja_template("chrome_public_apk_manifest") { |
375 input = "java/AndroidManifest.xml" | 377 input = "java/AndroidManifest.xml" |
376 output = "$root_gen_dir/chrome_public_apk_manifest/AndroidManifest.xml" | 378 output = "$root_gen_dir/chrome_public_apk_manifest/AndroidManifest.xml" |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 # TODO(GYP,cjhopman): Does this need version code/name? | 457 # TODO(GYP,cjhopman): Does this need version code/name? |
456 apk_name = "ChromePublicTest" | 458 apk_name = "ChromePublicTest" |
457 apk_under_test = ":chrome_public_apk" | 459 apk_under_test = ":chrome_public_apk" |
458 android_manifest = chrome_public_test_apk_manifest | 460 android_manifest = chrome_public_test_apk_manifest |
459 deps = [ | 461 deps = [ |
460 ":chrome_public_test_apk_manifest", | 462 ":chrome_public_test_apk_manifest", |
461 "//chrome/android:chrome_shared_test_java", | 463 "//chrome/android:chrome_shared_test_java", |
462 ] | 464 ] |
463 isolate_file = "../chrome_public_test_apk.isolate" | 465 isolate_file = "../chrome_public_test_apk.isolate" |
464 } | 466 } |
OLD | NEW |