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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
7 | 7 |
8 gypi_values = exec_script("//build/gypi_to_gn.py", | 8 gypi_values = exec_script("//build/gypi_to_gn.py", |
9 [ rebase_path("../chrome_common.gypi") ], | 9 [ rebase_path("../chrome_common.gypi") ], |
10 "scope", | 10 "scope", |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
297 "pref_names.h", | 297 "pref_names.h", |
298 "widevine_cdm_constants.cc", | 298 "widevine_cdm_constants.cc", |
299 "widevine_cdm_constants.h", | 299 "widevine_cdm_constants.h", |
300 ] | 300 ] |
301 | 301 |
302 deps = [ | 302 deps = [ |
303 ":make_chrome_version", | 303 ":make_chrome_version", |
304 "//base", | 304 "//base", |
305 "//base/third_party/dynamic_annotations", | 305 "//base/third_party/dynamic_annotations", |
306 "//components/bookmarks/common", | 306 "//components/bookmarks/common", |
307 "//components/dom_distiller/core", | |
sky
2015/07/24 20:26:45
This code ends up linked into the renderer. It doe
sdefresne
2015/07/25 19:17:57
Removed. Thank you for pointing this.
| |
308 "//components/enhanced_bookmarks", | |
307 "//third_party/widevine/cdm:version_h", | 309 "//third_party/widevine/cdm:version_h", |
308 ] | 310 ] |
309 | 311 |
310 if (enable_nacl) { | 312 if (enable_nacl) { |
311 deps += [ "//components/nacl:nacl_switches" ] | 313 deps += [ "//components/nacl:nacl_switches" ] |
312 } | 314 } |
313 } | 315 } |
314 | 316 |
315 source_set("test_support") { | 317 source_set("test_support") { |
316 testonly = true | 318 testonly = true |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
356 ":constants", | 358 ":constants", |
357 "//base", | 359 "//base", |
358 ] | 360 ] |
359 } | 361 } |
360 | 362 |
361 mojom("mojo_bindings") { | 363 mojom("mojo_bindings") { |
362 sources = [ | 364 sources = [ |
363 "resource_usage_reporter.mojom", | 365 "resource_usage_reporter.mojom", |
364 ] | 366 ] |
365 } | 367 } |
OLD | NEW |