Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1474)

Side by Side Diff: build/config/android/internal_rules.gni

Issue 1192263002: Create xxxhdpi density splits when density splits are enabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/android/pylib/device/device_utils.py ('k') | build/java_apk.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 6
7 assert(is_android) 7 assert(is_android)
8 8
9 rebased_android_sdk = rebase_path(android_sdk, root_build_dir) 9 rebased_android_sdk = rebase_path(android_sdk, root_build_dir)
10 rebased_android_sdk_root = rebase_path(android_sdk_root, root_build_dir) 10 rebased_android_sdk_root = rebase_path(android_sdk_root, root_build_dir)
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 _configuration_name = "Debug" 611 _configuration_name = "Debug"
612 } 612 }
613 613
614 _create_density_splits = 614 _create_density_splits =
615 defined(invoker.create_density_splits) && invoker.create_density_splits 615 defined(invoker.create_density_splits) && invoker.create_density_splits
616 if (_create_density_splits) { 616 if (_create_density_splits) {
617 _split_densities = [ 617 _split_densities = [
618 "hdpi", 618 "hdpi",
619 "xhdpi", 619 "xhdpi",
620 "xxhdpi", 620 "xxhdpi",
621 "xxxhdpi",
621 "tvdpi", 622 "tvdpi",
622 ] 623 ]
623 } 624 }
624 625
625 _package_resources_target_name = "${target_name}__package_resources" 626 _package_resources_target_name = "${target_name}__package_resources"
626 action(_package_resources_target_name) { 627 action(_package_resources_target_name) {
627 deps = _package_deps 628 deps = _package_deps
628 629
629 script = "//build/android/gyp/package_resources.py" 630 script = "//build/android/gyp/package_resources.py"
630 depfile = "${target_gen_dir}/${target_name}.d" 631 depfile = "${target_gen_dir}/${target_name}.d"
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after
1516 ] 1517 ]
1517 args = [ 1518 args = [
1518 "--depfile", 1519 "--depfile",
1519 rebase_path(depfile, root_build_dir), 1520 rebase_path(depfile, root_build_dir),
1520 "--script-output-path", 1521 "--script-output-path",
1521 rebase_path(generated_script, root_build_dir), 1522 rebase_path(generated_script, root_build_dir),
1522 ] 1523 ]
1523 args += test_runner_args 1524 args += test_runner_args
1524 } 1525 }
1525 } 1526 }
OLDNEW
« no previous file with comments | « build/android/pylib/device/device_utils.py ('k') | build/java_apk.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698