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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
7 import("//chrome/version.gni") | 7 import("//chrome/version.gni") |
8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
10 | 10 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 configs += [ | 55 configs += [ |
56 "//build/config:precompiled_headers", | 56 "//build/config:precompiled_headers", |
57 "//build/config/compiler:wexit_time_destructors", | 57 "//build/config/compiler:wexit_time_destructors", |
58 ] | 58 ] |
59 | 59 |
60 public_deps = [ | 60 public_deps = [ |
61 ":features", | 61 ":features", |
62 "//base:base", | 62 "//base:base", |
63 "//base:base_static", | 63 "//base:base_static", |
64 "//base:i18n", | 64 "//base:i18n", |
65 "//base:prefs", | |
66 "//chrome:resources", | 65 "//chrome:resources", |
67 "//chrome:strings", | 66 "//chrome:strings", |
68 "//chrome/app/theme:theme_resources", | 67 "//chrome/app/theme:theme_resources", |
69 "//chrome/common:constants", | 68 "//chrome/common:constants", |
70 "//chrome/common/safe_browsing:proto", | 69 "//chrome/common/safe_browsing:proto", |
71 "//chrome/common/variations:fieldtrial_testing_config", | 70 "//chrome/common/variations:fieldtrial_testing_config", |
72 "//chrome/installer/util:with_no_strings", | 71 "//chrome/installer/util:with_no_strings", |
73 "//components/cloud_devices/common", | 72 "//components/cloud_devices/common", |
74 "//components/component_updater", | 73 "//components/component_updater", |
75 "//components/content_settings/core/common", | 74 "//components/content_settings/core/common", |
76 "//components/crash/core/common", | 75 "//components/crash/core/common", |
77 "//components/data_reduction_proxy/content/common", | 76 "//components/data_reduction_proxy/content/common", |
78 "//components/dom_distiller/core", | 77 "//components/dom_distiller/core", |
79 "//components/error_page/common", | 78 "//components/error_page/common", |
80 "//components/favicon_base", | 79 "//components/favicon_base", |
81 "//components/flags_ui:switches", | 80 "//components/flags_ui:switches", |
82 "//components/gcm_driver/common", | 81 "//components/gcm_driver/common", |
83 "//components/json_schema", | 82 "//components/json_schema", |
84 "//components/metrics", | 83 "//components/metrics", |
85 "//components/metrics:net", | 84 "//components/metrics:net", |
86 "//components/nacl/common:process_type", | 85 "//components/nacl/common:process_type", |
87 "//components/nacl/common:switches", | 86 "//components/nacl/common:switches", |
88 "//components/offline_pages:switches", | 87 "//components/offline_pages:switches", |
89 "//components/omnibox/common", | 88 "//components/omnibox/common", |
90 "//components/policy:policy_component_common", | 89 "//components/policy:policy_component_common", |
| 90 "//components/prefs", |
91 "//components/strings", | 91 "//components/strings", |
92 "//components/translate/core/common", | 92 "//components/translate/core/common", |
93 "//components/url_formatter", | 93 "//components/url_formatter", |
94 "//components/variations", | 94 "//components/variations", |
95 "//components/version_info", | 95 "//components/version_info", |
96 "//content/public/common", | 96 "//content/public/common", |
97 "//crypto", | 97 "//crypto", |
98 "//extensions/common:common_constants", | 98 "//extensions/common:common_constants", |
99 "//gin", | 99 "//gin", |
100 "//google_apis", | 100 "//google_apis", |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 ":constants", | 385 ":constants", |
386 "//base", | 386 "//base", |
387 ] | 387 ] |
388 } | 388 } |
389 | 389 |
390 mojom("mojo_bindings") { | 390 mojom("mojo_bindings") { |
391 sources = [ | 391 sources = [ |
392 "resource_usage_reporter.mojom", | 392 "resource_usage_reporter.mojom", |
393 ] | 393 ] |
394 } | 394 } |
OLD | NEW |