| 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/catalog/public/tools/catalog.gni") | 9 import("//services/catalog/public/tools/catalog.gni") |
| 10 import("//services/service_manager/public/service_manifest.gni") | 10 import("//services/service_manager/public/service_manifest.gni") |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 "//components/crash/content/app:lib", | 328 "//components/crash/content/app:lib", |
| 329 "//components/startup_metric_utils/browser:lib", | 329 "//components/startup_metric_utils/browser:lib", |
| 330 "//content/public/app:both", | 330 "//content/public/app:both", |
| 331 "//content/public/common", | 331 "//content/public/common", |
| 332 "//content/public/common:service_names", | 332 "//content/public/common:service_names", |
| 333 "//pdf", | 333 "//pdf", |
| 334 "//ppapi/features", | 334 "//ppapi/features", |
| 335 "//printing/features", | 335 "//printing/features", |
| 336 "//services/service_manager/embedder", | 336 "//services/service_manager/embedder", |
| 337 "//ui/base", | 337 "//ui/base", |
| 338 "//v8:v8_headers", |
| 338 ] | 339 ] |
| 339 | 340 |
| 340 if (is_mac) { | 341 if (is_mac) { |
| 341 sources += [ "chrome_main_mac.mm" ] | 342 sources += [ "chrome_main_mac.mm" ] |
| 342 | 343 |
| 343 deps += [ "//chrome:chrome_framework" ] | 344 deps += [ "//chrome:chrome_framework" ] |
| 344 } | 345 } |
| 345 | 346 |
| 346 if (is_win) { | 347 if (is_win) { |
| 347 deps += [ | 348 deps += [ |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 536 } | 537 } |
| 537 | 538 |
| 538 catalog("catalog_for_tests_mash") { | 539 catalog("catalog_for_tests_mash") { |
| 539 embedded_services = chrome_embedded_services + [ | 540 embedded_services = chrome_embedded_services + [ |
| 540 ":chrome_content_packaged_services_manifest_for_mash", | 541 ":chrome_content_packaged_services_manifest_for_mash", |
| 541 ":chrome_test_browser_manifest", | 542 ":chrome_test_browser_manifest", |
| 542 ] | 543 ] |
| 543 embedded_services -= [ ":chrome_content_browser_manifest" ] | 544 embedded_services -= [ ":chrome_content_browser_manifest" ] |
| 544 } | 545 } |
| 545 } | 546 } |
| OLD | NEW |