| 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 # 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |