| 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 "//chrome/renderer", | 273 "//chrome/renderer", |
| 274 "//chrome/utility", | 274 "//chrome/utility", |
| 275 "//content/public/child", | 275 "//content/public/child", |
| 276 "//third_party/WebKit/public:blink_devtools_frontend_resources", | 276 "//third_party/WebKit/public:blink_devtools_frontend_resources", |
| 277 ] | 277 ] |
| 278 } | 278 } |
| 279 if (cld_version == 0 || cld_version == 2) { | 279 if (cld_version == 0 || cld_version == 2) { |
| 280 deps += [ "//third_party/cld_2:cld2_platform_impl" ] | 280 deps += [ "//third_party/cld_2:cld2_platform_impl" ] |
| 281 } | 281 } |
| 282 | 282 |
| 283 # TODO(gyp) if (enable_nacl) { | 283 if (enable_nacl) { |
| 284 # deps += [ "<(DEPTH)/components/nacl/renderer/plugin/plugin.gyp:nacl_trusted
_plugin" ] | 284 deps += [ "//components/nacl/renderer/plugin:nacl_trusted_plugin" ] |
| 285 #} | 285 } |
| 286 if (enable_remoting) { | 286 if (enable_remoting) { |
| 287 deps += [ "//remoting/client/plugin" ] | 287 deps += [ "//remoting/client/plugin" ] |
| 288 } | 288 } |
| 289 } | 289 } |
| 290 | 290 |
| 291 if (is_win) { | 291 if (is_win) { |
| 292 # TODO(brettw) this duplicates "//chrome/common:version" which applies to | 292 # TODO(brettw) this duplicates "//chrome/common:version" which applies to |
| 293 # Linux. | 293 # Linux. |
| 294 process_version("version_header") { | 294 process_version("version_header") { |
| 295 # TODO(brettW) this should have more reduced visibility, but chrome/browser | 295 # TODO(brettW) this should have more reduced visibility, but chrome/browser |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 688 "//chrome/browser/ui", | 688 "//chrome/browser/ui", |
| 689 "//chrome/child", | 689 "//chrome/child", |
| 690 "//chrome/plugin", | 690 "//chrome/plugin", |
| 691 "//chrome/renderer", | 691 "//chrome/renderer", |
| 692 "//chrome/utility", | 692 "//chrome/utility", |
| 693 "//components/enhanced_bookmarks", | 693 "//components/enhanced_bookmarks", |
| 694 "//content/public/app:browser", | 694 "//content/public/app:browser", |
| 695 ] | 695 ] |
| 696 } | 696 } |
| 697 } | 697 } |
| OLD | NEW |