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("//printing/features/features.gni") | 7 import("//printing/features/features.gni") |
8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
10 | 10 |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 | 323 |
324 if (is_mac) { | 324 if (is_mac) { |
325 sources += [ "chrome_main_mac.mm" ] | 325 sources += [ "chrome_main_mac.mm" ] |
326 | 326 |
327 deps += [ "//chrome:chrome_framework" ] | 327 deps += [ "//chrome:chrome_framework" ] |
328 } | 328 } |
329 | 329 |
330 if (is_win) { | 330 if (is_win) { |
331 deps += [ | 331 deps += [ |
332 "//chrome:chrome_initial", | 332 "//chrome:chrome_initial", |
| 333 "//chrome/install_static:install_static_util", |
333 "//sandbox/win:sandbox", | 334 "//sandbox/win:sandbox", |
334 ] | 335 ] |
335 } | 336 } |
336 | 337 |
337 if (is_chromeos) { | 338 if (is_chromeos) { |
338 deps += [ | 339 deps += [ |
339 "//chrome/browser/chromeos", | 340 "//chrome/browser/chromeos", |
340 "//components/metrics/leak_detector:leak_detector", | 341 "//components/metrics/leak_detector:leak_detector", |
341 ] | 342 ] |
342 } | 343 } |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 group("service_manifests") { | 427 group("service_manifests") { |
427 data_deps = [ | 428 data_deps = [ |
428 ":chrome_content_browser_manifest", | 429 ":chrome_content_browser_manifest", |
429 ":chrome_content_gpu_manifest", | 430 ":chrome_content_gpu_manifest", |
430 ":chrome_content_plugin_manifest", | 431 ":chrome_content_plugin_manifest", |
431 ":chrome_content_renderer_manifest", | 432 ":chrome_content_renderer_manifest", |
432 ":chrome_content_utility_manifest", | 433 ":chrome_content_utility_manifest", |
433 ] | 434 ] |
434 } | 435 } |
435 } | 436 } |
OLD | NEW |