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/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 | 9 |
10 # This target is for dependency tracking for the command ID header. | 10 # This target is for dependency tracking for the command ID header. |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 "//chrome/child", | 300 "//chrome/child", |
301 "//chrome/common", | 301 "//chrome/common", |
302 "//chrome/gpu", | 302 "//chrome/gpu", |
303 "//chrome/renderer", | 303 "//chrome/renderer", |
304 "//chrome/utility", | 304 "//chrome/utility", |
305 "//components/crash/content/app", | 305 "//components/crash/content/app", |
306 "//components/crash/content/app:lib", | 306 "//components/crash/content/app:lib", |
307 "//components/startup_metric_utils/browser:lib", | 307 "//components/startup_metric_utils/browser:lib", |
308 "//content/public/app:both", | 308 "//content/public/app:both", |
309 "//content/public/common", | 309 "//content/public/common", |
| 310 "//printing/features", |
310 "//ui/base", | 311 "//ui/base", |
311 ] | 312 ] |
312 | 313 |
313 if (is_mac) { | 314 if (is_mac) { |
314 sources += [ "chrome_main_mac.mm" ] | 315 sources += [ "chrome_main_mac.mm" ] |
315 | 316 |
316 deps += [ "//chrome:chrome_framework" ] | 317 deps += [ "//chrome:chrome_framework" ] |
317 } | 318 } |
318 | 319 |
319 if (is_win) { | 320 if (is_win) { |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 | 395 |
395 group("service_manifests") { | 396 group("service_manifests") { |
396 data_deps = [ | 397 data_deps = [ |
397 ":chrome_content_browser_manifest", | 398 ":chrome_content_browser_manifest", |
398 ":chrome_content_gpu_manifest", | 399 ":chrome_content_gpu_manifest", |
399 ":chrome_content_renderer_manifest", | 400 ":chrome_content_renderer_manifest", |
400 ":chrome_content_utility_manifest", | 401 ":chrome_content_utility_manifest", |
401 ] | 402 ] |
402 } | 403 } |
403 } | 404 } |
OLD | NEW |