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

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

Issue 2499923003: Disable access to secondary dex files. (Closed)
Patch Set: Findbugs Created 4 years, 1 month 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/incremental_install/java/org/chromium/incrementalinstall/Reflect.java ('k') | no next file » | 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 # Do not add any imports to non-//build directories here. 5 # Do not add any imports to non-//build directories here.
6 # Some projects (e.g. V8) do not have non-build directories DEPS'ed in. 6 # Some projects (e.g. V8) do not have non-build directories DEPS'ed in.
7 import("//build/config/android/config.gni") 7 import("//build/config/android/config.gni")
8 import("//build/config/android/internal_rules.gni") 8 import("//build/config/android/internal_rules.gni")
9 import("//build/config/compiler/compiler.gni") 9 import("//build/config/compiler/compiler.gni")
10 import("//build/config/dcheck_always_on.gni") 10 import("//build/config/dcheck_always_on.gni")
(...skipping 1731 matching lines...) Expand 10 before | Expand all | Expand 10 after
1742 ":$build_config_target", 1742 ":$build_config_target",
1743 ] 1743 ]
1744 1744
1745 defines = [] 1745 defines = []
1746 if (enable_multidex) { 1746 if (enable_multidex) {
1747 defines += [ "ENABLE_MULTIDEX" ] 1747 defines += [ "ENABLE_MULTIDEX" ]
1748 } 1748 }
1749 if (is_java_debug || dcheck_always_on) { 1749 if (is_java_debug || dcheck_always_on) {
1750 defines += [ "_DCHECK_IS_ON" ] 1750 defines += [ "_DCHECK_IS_ON" ]
1751 } 1751 }
1752 if (is_official_build) {
1753 defines += [ "IS_OFFICIAL_BUILD" ]
1754 }
1752 defines += [ 1755 defines += [
1753 "COMPRESSED_LOCALE_LIST=" + 1756 "COMPRESSED_LOCALE_LIST=" +
1754 "@FileArg($_rebased_build_config:compressed_locales_java_list)", 1757 "@FileArg($_rebased_build_config:compressed_locales_java_list)",
1755 "UNCOMPRESSED_LOCALE_LIST=" + 1758 "UNCOMPRESSED_LOCALE_LIST=" +
1756 "@FileArg($_rebased_build_config:uncompressed_locales_java_list)", 1759 "@FileArg($_rebased_build_config:uncompressed_locales_java_list)",
1757 ] 1760 ]
1758 } 1761 }
1759 _srcjar_deps += [ ":${_template_name}__build_config_java" ] 1762 _srcjar_deps += [ ":${_template_name}__build_config_java" ]
1760 } 1763 }
1761 1764
(...skipping 1009 matching lines...) Expand 10 before | Expand all | Expand 10 after
2771 # because in practice they seem to contain classes required to be in the 2774 # because in practice they seem to contain classes required to be in the
2772 # classpath. 2775 # classpath.
2773 deps += _subjar_targets 2776 deps += _subjar_targets
2774 } 2777 }
2775 if (defined(_res_target_name)) { 2778 if (defined(_res_target_name)) {
2776 deps += [ ":$_res_target_name" ] 2779 deps += [ ":$_res_target_name" ]
2777 } 2780 }
2778 } 2781 }
2779 } 2782 }
2780 } 2783 }
OLDNEW
« no previous file with comments | « build/android/incremental_install/java/org/chromium/incrementalinstall/Reflect.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698