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