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("//ppapi/features/features.gni") |
7 import("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
8 import("//services/service_manager/public/service_manifest.gni") | 9 import("//services/service_manager/public/service_manifest.gni") |
9 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
10 | 11 |
11 # This target is for dependency tracking for the command ID header. | 12 # This target is for dependency tracking for the command ID header. |
12 source_set("command_ids") { | 13 source_set("command_ids") { |
13 sources = [ | 14 sources = [ |
14 "chrome_command_ids.h", | 15 "chrome_command_ids.h", |
15 ] | 16 ] |
16 } | 17 } |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 "//chrome/child", | 311 "//chrome/child", |
311 "//chrome/common", | 312 "//chrome/common", |
312 "//chrome/gpu", | 313 "//chrome/gpu", |
313 "//chrome/renderer", | 314 "//chrome/renderer", |
314 "//chrome/utility", | 315 "//chrome/utility", |
315 "//components/crash/content/app", | 316 "//components/crash/content/app", |
316 "//components/crash/content/app:lib", | 317 "//components/crash/content/app:lib", |
317 "//components/startup_metric_utils/browser:lib", | 318 "//components/startup_metric_utils/browser:lib", |
318 "//content/public/app:both", | 319 "//content/public/app:both", |
319 "//content/public/common", | 320 "//content/public/common", |
| 321 "//ppapi/features", |
320 "//printing/features", | 322 "//printing/features", |
321 "//ui/base", | 323 "//ui/base", |
322 ] | 324 ] |
323 | 325 |
324 if (is_mac) { | 326 if (is_mac) { |
325 sources += [ "chrome_main_mac.mm" ] | 327 sources += [ "chrome_main_mac.mm" ] |
326 | 328 |
327 deps += [ "//chrome:chrome_framework" ] | 329 deps += [ "//chrome:chrome_framework" ] |
328 } | 330 } |
329 | 331 |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 group("service_manifests") { | 428 group("service_manifests") { |
427 data_deps = [ | 429 data_deps = [ |
428 ":chrome_content_browser_manifest", | 430 ":chrome_content_browser_manifest", |
429 ":chrome_content_gpu_manifest", | 431 ":chrome_content_gpu_manifest", |
430 ":chrome_content_plugin_manifest", | 432 ":chrome_content_plugin_manifest", |
431 ":chrome_content_renderer_manifest", | 433 ":chrome_content_renderer_manifest", |
432 ":chrome_content_utility_manifest", | 434 ":chrome_content_utility_manifest", |
433 ] | 435 ] |
434 } | 436 } |
435 } | 437 } |
OLD | NEW |