Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: sky/engine/core/BUILD.gn

Issue 655993004: Add missing dependency (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//sky/engine/bindings/scripts/scripts.gni") 5 import("//sky/engine/bindings/scripts/scripts.gni")
6 import("//sky/engine/build/scripts/scripts.gni") 6 import("//sky/engine/build/scripts/scripts.gni")
7 import("//sky/engine/core/core.gni") 7 import("//sky/engine/core/core.gni")
8 8
9 visibility = ["//sky/engine/*"] 9 visibility = ["//sky/engine/*"]
10 10
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 } 264 }
265 265
266 css_properties("make_core_generated_css_property_metadata") { 266 css_properties("make_core_generated_css_property_metadata") {
267 script = "../build/scripts/make_css_property_metadata.py" 267 script = "../build/scripts/make_css_property_metadata.py"
268 other_inputs = [ 268 other_inputs = [
269 "../build/scripts/templates/CSSPropertyMetadata.cpp.tmpl", 269 "../build/scripts/templates/CSSPropertyMetadata.cpp.tmpl",
270 ] 270 ]
271 outputs = [ 271 outputs = [
272 "$sky_core_output_dir/CSSPropertyMetadata.cpp", 272 "$sky_core_output_dir/CSSPropertyMetadata.cpp",
273 ] 273 ]
274
275 deps = [ ":core_names" ]
274 } 276 }
275 277
276 process_in_files("make_core_generated_css_value_keywords") { 278 process_in_files("make_core_generated_css_value_keywords") {
277 script = "../build/scripts/make_css_value_keywords.py" 279 script = "../build/scripts/make_css_value_keywords.py"
278 280
279 in_files = [ 281 in_files = [
280 "css/CSSValueKeywords.in", 282 "css/CSSValueKeywords.in",
281 "css/SVGCSSValueKeywords.in", 283 "css/SVGCSSValueKeywords.in",
282 ] 284 ]
283 outputs = [ 285 outputs = [
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 "$sky_core_output_dir/{{source_name_part}}.h", 516 "$sky_core_output_dir/{{source_name_part}}.h",
515 ] 517 ]
516 args = [ 518 args = [
517 "{{source}}", 519 "{{source}}",
518 rel_sky_core_gen_dir, 520 rel_sky_core_gen_dir,
519 bison_exe, 521 bison_exe,
520 ] 522 ]
521 523
522 deps = make_core_generated_deps 524 deps = make_core_generated_deps
523 } 525 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698