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