| 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 jinja_template("chrome_shell_manifest") { | 340 jinja_template("chrome_shell_manifest") { |
| 341 testonly = true | 341 testonly = true |
| 342 input = "shell/java/AndroidManifest.xml.jinja2" | 342 input = "shell/java/AndroidManifest.xml.jinja2" |
| 343 output = chrome_shell_manifest | 343 output = chrome_shell_manifest |
| 344 } | 344 } |
| 345 | 345 |
| 346 # GYP: //chrome/chrome_shell.gypi:chrome_shell_apk | 346 # GYP: //chrome/chrome_shell.gypi:chrome_shell_apk |
| 347 android_apk("chrome_shell_apk") { | 347 android_apk("chrome_shell_apk") { |
| 348 testonly = true | 348 testonly = true |
| 349 deps = [ | 349 deps = [ |
| 350 "//base:base_java", |
| 350 ":chrome_shell_resources", | 351 ":chrome_shell_resources", |
| 351 ":chrome_shell_java", | 352 ":chrome_shell_java", |
| 352 ":chrome_shell_assets", | 353 ":chrome_shell_assets", |
| 353 ":chrome_shell", | 354 ":chrome_shell", |
| 354 ] | 355 ] |
| 355 apk_name = "ChromeShell" | 356 apk_name = "ChromeShell" |
| 356 android_manifest = chrome_shell_manifest | 357 android_manifest = chrome_shell_manifest |
| 357 native_libs = [ "libchrome_shell.so" ] | 358 native_libs = [ "libchrome_shell.so" ] |
| 358 asset_location = chrome_shell_assets_dir | 359 asset_location = chrome_shell_assets_dir |
| 359 | 360 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 376 jinja_template("chrome_sync_shell_manifest") { | 377 jinja_template("chrome_sync_shell_manifest") { |
| 377 testonly = true | 378 testonly = true |
| 378 input = "sync_shell/java/AndroidManifest.xml.jinja2" | 379 input = "sync_shell/java/AndroidManifest.xml.jinja2" |
| 379 output = chrome_sync_shell_manifest | 380 output = chrome_sync_shell_manifest |
| 380 } | 381 } |
| 381 | 382 |
| 382 # GYP: //chrome/chrome_shell.gypi:chrome_sync_shell_apk | 383 # GYP: //chrome/chrome_shell.gypi:chrome_sync_shell_apk |
| 383 android_apk("chrome_sync_shell_apk") { | 384 android_apk("chrome_sync_shell_apk") { |
| 384 testonly = true | 385 testonly = true |
| 385 deps = [ | 386 deps = [ |
| 387 "//base:base_java", |
| 386 ":chrome_shell_resources", | 388 ":chrome_shell_resources", |
| 387 ":chrome_shell_java", | 389 ":chrome_shell_java", |
| 388 ":chrome_shell_assets", | 390 ":chrome_shell_assets", |
| 389 ":chrome_sync_shell", | 391 ":chrome_sync_shell", |
| 390 ] | 392 ] |
| 391 apk_name = "ChromeSyncShell" | 393 apk_name = "ChromeSyncShell" |
| 392 android_manifest = chrome_sync_shell_manifest | 394 android_manifest = chrome_sync_shell_manifest |
| 393 native_libs = [ "libchrome_sync_shell.so" ] | 395 native_libs = [ "libchrome_sync_shell.so" ] |
| 394 asset_location = chrome_shell_assets_dir | 396 asset_location = chrome_shell_assets_dir |
| 395 } | 397 } |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 ] | 509 ] |
| 508 } | 510 } |
| 509 | 511 |
| 510 zip("chrome_version_srcjar") { | 512 zip("chrome_version_srcjar") { |
| 511 inputs = [ | 513 inputs = [ |
| 512 chrome_version_java_file, | 514 chrome_version_java_file, |
| 513 ] | 515 ] |
| 514 output = "$target_gen_dir/$target_name.srcjar" | 516 output = "$target_gen_dir/$target_name.srcjar" |
| 515 base_dir = chrome_version_java_dir | 517 base_dir = chrome_version_java_dir |
| 516 } | 518 } |
| OLD | NEW |