| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/locales.gni") | 6 import("//build/config/locales.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//chrome/chrome_repack_locales.gni") | 8 import("//chrome/chrome_repack_locales.gni") |
| 9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
| 10 | 10 |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 "//chrome_elf", | 191 "//chrome_elf", |
| 192 "//content/app/resources", | 192 "//content/app/resources", |
| 193 "//crypto", | 193 "//crypto", |
| 194 "//net:net_resources", | 194 "//net:net_resources", |
| 195 "//third_party/wtl", | 195 "//third_party/wtl", |
| 196 "//ui/views", | 196 "//ui/views", |
| 197 ] | 197 ] |
| 198 if (enable_configuration_policy) { | 198 if (enable_configuration_policy) { |
| 199 deps += [ "//components/policy" ] | 199 deps += [ "//components/policy" ] |
| 200 } | 200 } |
| 201 if (cpu_arch == "x86") { | 201 if (current_cpu == "x86") { |
| 202 # Add a dependency to custom import library for user32 delay imports onl
y | 202 # Add a dependency to custom import library for user32 delay imports onl
y |
| 203 # in x86 builds. | 203 # in x86 builds. |
| 204 #deps += [ 'chrome_user32_delay_imports' ] TODO(GYP) | 204 #deps += [ 'chrome_user32_delay_imports' ] TODO(GYP) |
| 205 } | 205 } |
| 206 | 206 |
| 207 # TODO(GYP) incremental linking flags in debug builds | 207 # TODO(GYP) incremental linking flags in debug builds |
| 208 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 208 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
| 209 | 209 |
| 210 # TODO(GYP) Lots of VCLinkerTool stuff on Windows. | 210 # TODO(GYP) Lots of VCLinkerTool stuff on Windows. |
| 211 | 211 |
| (...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 "//chrome/browser/ui", | 692 "//chrome/browser/ui", |
| 693 "//chrome/child", | 693 "//chrome/child", |
| 694 "//chrome/plugin", | 694 "//chrome/plugin", |
| 695 "//chrome/renderer", | 695 "//chrome/renderer", |
| 696 "//chrome/utility", | 696 "//chrome/utility", |
| 697 "//components/enhanced_bookmarks", | 697 "//components/enhanced_bookmarks", |
| 698 "//content/public/app:browser", | 698 "//content/public/app:browser", |
| 699 ] | 699 ] |
| 700 } | 700 } |
| 701 } | 701 } |
| OLD | NEW |