Chromium Code Reviews| 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") |
| 11 import("//tools/grit/grit_rule.gni") | 11 import("//tools/grit/grit_rule.gni") |
| 12 | 12 |
| 13 # This target is for dependency tracking for the command ID header. | 13 # This target is for dependency tracking for the command ID header. |
| 14 source_set("command_ids") { | 14 source_set("command_ids") { |
| 15 sources = [ | 15 sources = [ |
| 16 "chrome_command_ids.h", | 16 "chrome_command_ids.h", |
| 17 ] | 17 ] |
| 18 } | 18 } |
| 19 | 19 |
| 20 # Shared by //chrome/browser and //chrome/app/mash. Not in //chrome/common | |
| 21 # because it isn't shared with processes like renderer, utility, etc. | |
|
James Cook
2017/03/01 18:24:38
I ran this by sky@ -- there's not a great place fo
| |
| 22 source_set("shutdown_signal_handlers") { | |
| 23 sources = [ | |
| 24 "shutdown_signal_handlers_posix.cc", | |
| 25 "shutdown_signal_handlers_posix.h", | |
| 26 ] | |
| 27 deps = [ | |
| 28 "//base", | |
| 29 ] | |
| 30 } | |
| 31 | |
| 20 # On Windows, links chrome_dll.rc. On other platforms, does nothing so you can | 32 # On Windows, links chrome_dll.rc. On other platforms, does nothing so you can |
| 21 # unconditionally depend on it. | 33 # unconditionally depend on it. |
| 22 source_set("chrome_dll_resources") { | 34 source_set("chrome_dll_resources") { |
| 23 # This source is added unconditionally for include checking on non-Windows | 35 # This source is added unconditionally for include checking on non-Windows |
| 24 # platforms. | 36 # platforms. |
| 25 sources = [ | 37 sources = [ |
| 26 "chrome_dll_resource.h", | 38 "chrome_dll_resource.h", |
| 27 ] | 39 ] |
| 28 if (is_win) { | 40 if (is_win) { |
| 29 sources += [ "chrome_dll.rc" ] | 41 sources += [ "chrome_dll.rc" ] |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 484 chrome_embedded_services + | 496 chrome_embedded_services + |
| 485 [ ":chrome_content_packaged_services_manifest_for_mash" ] | 497 [ ":chrome_content_packaged_services_manifest_for_mash" ] |
| 486 } | 498 } |
| 487 } | 499 } |
| 488 | 500 |
| 489 catalog("catalog") { | 501 catalog("catalog") { |
| 490 embedded_services = chrome_embedded_services + | 502 embedded_services = chrome_embedded_services + |
| 491 [ ":chrome_content_packaged_services_manifest" ] | 503 [ ":chrome_content_packaged_services_manifest" ] |
| 492 } | 504 } |
| 493 } | 505 } |
| OLD | NEW |