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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 sources += | 163 sources += |
164 rebase_path(gypi_values.chrome_common_extensions_chromeos_sources, | 164 rebase_path(gypi_values.chrome_common_extensions_chromeos_sources, |
165 ".", | 165 ".", |
166 "//chrome") | 166 "//chrome") |
167 } | 167 } |
168 if (use_aura) { | 168 if (use_aura) { |
169 # This dependency is for a header used only by extensions code. | 169 # This dependency is for a header used only by extensions code. |
170 public_deps += [ "//ui/keyboard:keyboard_with_content" ] | 170 public_deps += [ "//ui/keyboard:keyboard_with_content" ] |
171 } | 171 } |
172 } | 172 } |
173 | 173 if (is_win) { |
| 174 public_deps += [ "//components/startup_metric_utils/common" ] |
| 175 } |
174 if (is_win || is_mac) { | 176 if (is_win || is_mac) { |
175 sources += | 177 sources += |
176 rebase_path(gypi_values.chrome_common_win_mac_sources, ".", "//chrome") | 178 rebase_path(gypi_values.chrome_common_win_mac_sources, ".", "//chrome") |
177 } | 179 } |
178 if (is_win || is_mac || is_chromeos) { | 180 if (is_win || is_mac || is_chromeos) { |
179 sources += rebase_path(gypi_values.chrome_common_networking_private_sources, | 181 sources += rebase_path(gypi_values.chrome_common_networking_private_sources, |
180 ".", | 182 ".", |
181 "//chrome") | 183 "//chrome") |
182 | 184 |
183 # networking_private_crypto.cc depends on boringssl. | 185 # networking_private_crypto.cc depends on boringssl. |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 ":constants", | 386 ":constants", |
385 "//base", | 387 "//base", |
386 ] | 388 ] |
387 } | 389 } |
388 | 390 |
389 mojom("mojo_bindings") { | 391 mojom("mojo_bindings") { |
390 sources = [ | 392 sources = [ |
391 "resource_usage_reporter.mojom", | 393 "resource_usage_reporter.mojom", |
392 ] | 394 ] |
393 } | 395 } |
OLD | NEW |