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