| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 "app/delay_load_hook_win.cc", | 134 "app/delay_load_hook_win.cc", |
| 135 "app/delay_load_hook_win.h", | 135 "app/delay_load_hook_win.h", |
| 136 "//base/win/dllmain.cc", | 136 "//base/win/dllmain.cc", |
| 137 ] | 137 ] |
| 138 | 138 |
| 139 deps += [ | 139 deps += [ |
| 140 # On Windows, link the dependencies (libraries) that make up actual | 140 # On Windows, link the dependencies (libraries) that make up actual |
| 141 # Chromium functionality into this .dll. | 141 # Chromium functionality into this .dll. |
| 142 #'chrome_version_resources', TODO(GYP) | 142 #'chrome_version_resources', TODO(GYP) |
| 143 "//chrome/app/theme:chrome_unscaled_resources", | 143 "//chrome/app/theme:chrome_unscaled_resources", |
| 144 "//chrome_elf", |
| 144 "//content/app/resources", | 145 "//content/app/resources", |
| 145 "//crypto", | 146 "//crypto", |
| 146 "//net:net_resources", | 147 "//net:net_resources", |
| 147 "//third_party/wtl", | 148 "//third_party/wtl", |
| 148 "//ui/views", | 149 "//ui/views", |
| 149 | |
| 150 #'<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf' ] TODO(GYP) | |
| 151 ] | 150 ] |
| 152 if (enable_configuration_policy) { | 151 if (enable_configuration_policy) { |
| 153 deps += [ "//components/policy" ] | 152 deps += [ "//components/policy" ] |
| 154 } | 153 } |
| 155 if (cpu_arch == "x86") { | 154 if (cpu_arch == "x86") { |
| 156 # Add a dependency to custom import library for user32 delay imports only | 155 # Add a dependency to custom import library for user32 delay imports only |
| 157 # in x86 builds. | 156 # in x86 builds. |
| 158 #deps += [ 'chrome_user32_delay_imports' ] TODO(GYP) | 157 #deps += [ 'chrome_user32_delay_imports' ] TODO(GYP) |
| 159 } | 158 } |
| 160 | 159 |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 "//chrome/browser", | 582 "//chrome/browser", |
| 584 "//chrome/browser/ui", | 583 "//chrome/browser/ui", |
| 585 "//chrome/plugin", | 584 "//chrome/plugin", |
| 586 "//chrome/renderer", | 585 "//chrome/renderer", |
| 587 "//chrome/utility", | 586 "//chrome/utility", |
| 588 "//components/enhanced_bookmarks", | 587 "//components/enhanced_bookmarks", |
| 589 "//content/public/app:browser", | 588 "//content/public/app:browser", |
| 590 ] | 589 ] |
| 591 } | 590 } |
| 592 } | 591 } |
| OLD | NEW |