| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 | 7 |
| 8 config("internal_config") { | 8 config("internal_config") { |
| 9 defines = [ | 9 defines = [ |
| 10 "SECURITY_WIN32", | 10 "SECURITY_WIN32", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "//build/config/compiler:wexit_time_destructors", | 55 "//build/config/compiler:wexit_time_destructors", |
| 56 ] | 56 ] |
| 57 | 57 |
| 58 deps = [ | 58 deps = [ |
| 59 ":resources", | 59 ":resources", |
| 60 "//base", | 60 "//base", |
| 61 "//base:base_static", | 61 "//base:base_static", |
| 62 "//base/third_party/dynamic_annotations", | 62 "//base/third_party/dynamic_annotations", |
| 63 "//chrome/common:constants", | 63 "//chrome/common:constants", |
| 64 "//cloud_print/common", | 64 "//cloud_print/common", |
| 65 "//components/browser_sync/common", |
| 65 "//components/cloud_devices/common", | 66 "//components/cloud_devices/common", |
| 66 "//content/public/common:static_switches", | 67 "//content/public/common:static_switches", |
| 67 "//google_apis", | 68 "//google_apis", |
| 68 "//ipc", | 69 "//ipc", |
| 69 "//net", | 70 "//net", |
| 70 "//url", | 71 "//url", |
| 71 ] | 72 ] |
| 72 | 73 |
| 73 if (enable_basic_printing || enable_print_preview) { | 74 if (enable_basic_printing || enable_print_preview) { |
| 74 deps += [ "//printing" ] | 75 deps += [ "//printing" ] |
| (...skipping 14 matching lines...) Expand all Loading... |
| 89 } | 90 } |
| 90 } | 91 } |
| 91 | 92 |
| 92 grit("resources") { | 93 grit("resources") { |
| 93 source = "win/service_resources.grd" | 94 source = "win/service_resources.grd" |
| 94 outputs = [ | 95 outputs = [ |
| 95 "resources.h", | 96 "resources.h", |
| 96 "service_resources_en.rc", | 97 "service_resources_en.rc", |
| 97 ] | 98 ] |
| 98 } | 99 } |
| OLD | NEW |