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("//third_party/icu/config.gni") | 9 import("//third_party/icu/config.gni") |
10 import("channel.gni") | 10 import("channel.gni") |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 deps = [ | 324 deps = [ |
325 "//chrome:packed_resources", | 325 "//chrome:packed_resources", |
326 "//chrome:packed_extra_resources", | 326 "//chrome:packed_extra_resources", |
327 ] | 327 ] |
328 | 328 |
329 if (icu_use_data_file) { | 329 if (icu_use_data_file) { |
330 sources += [ "$root_build_dir/icudtl.dat" ] | 330 sources += [ "$root_build_dir/icudtl.dat" ] |
331 } | 331 } |
332 if (v8_use_external_startup_data) { | 332 if (v8_use_external_startup_data) { |
333 sources += [ | 333 sources += [ |
334 "$root_gen_dir/natives_blob.bin", | 334 "$root_build_dir/natives_blob.bin", |
335 "$root_gen_dir/snapshot_blob.bin", | 335 "$root_build_dir/snapshot_blob.bin", |
336 ] | 336 ] |
337 } | 337 } |
338 } | 338 } |
339 | 339 |
340 chrome_shell_manifest = | 340 chrome_shell_manifest = |
341 "$target_gen_dir/chrome_shell_manifest/AndroidManifest.xml" | 341 "$target_gen_dir/chrome_shell_manifest/AndroidManifest.xml" |
342 | 342 |
343 # GYP: //chrome/chrome_shell.gypi:chrome_shell_manifest | 343 # GYP: //chrome/chrome_shell.gypi:chrome_shell_manifest |
344 jinja_template("chrome_shell_manifest") { | 344 jinja_template("chrome_shell_manifest") { |
345 testonly = true | 345 testonly = true |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
511 ] | 511 ] |
512 } | 512 } |
513 | 513 |
514 zip("chrome_version_srcjar") { | 514 zip("chrome_version_srcjar") { |
515 inputs = [ | 515 inputs = [ |
516 chrome_version_java_file, | 516 chrome_version_java_file, |
517 ] | 517 ] |
518 output = "$target_gen_dir/$target_name.srcjar" | 518 output = "$target_gen_dir/$target_name.srcjar" |
519 base_dir = chrome_version_java_dir | 519 base_dir = chrome_version_java_dir |
520 } | 520 } |
OLD | NEW |