| 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("//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 |
| 11 rel_sky_core_gen_dir = rebase_path(sky_core_output_dir, root_build_dir) | 11 rel_sky_core_gen_dir = rebase_path(sky_core_output_dir, root_build_dir) |
| 12 | 12 |
| 13 source_set("libraries") { | 13 source_set("libraries") { |
| 14 public_deps = [ | 14 public_deps = [ |
| 15 "//base:base", | 15 "//base", |
| 16 "//gin", | 16 "//gin", |
| 17 "//gpu/command_buffer/client:gles2_c_lib", | 17 "//gpu/command_buffer/client:gles2_c_lib", |
| 18 "//mojo/application", | 18 "//mojo/application", |
| 19 "//mojo/common", | 19 "//mojo/common", |
| 20 "//mojo/public/c/system:for_shared_library", | 20 "//mojo/public/c/system:for_shared_library", |
| 21 "//mojo/public/cpp/bindings", | 21 "//mojo/public/cpp/bindings", |
| 22 "//mojo/public/cpp/system", |
| 22 "//mojo/public/cpp/utility", | 23 "//mojo/public/cpp/utility", |
| 23 "//mojo/public/cpp/system", | |
| 24 "//mojo/services/public/cpp/view_manager", | 24 "//mojo/services/public/cpp/view_manager", |
| 25 "//mojo/services/public/interfaces/navigation", | 25 "//mojo/services/public/interfaces/navigation", |
| 26 "//skia", | 26 "//skia", |
| 27 "//sky/engine/wtf", | 27 "//sky/engine/wtf", |
| 28 "//sky/services/inspector:bindings", |
| 28 "//third_party/angle:translator", | 29 "//third_party/angle:translator", |
| 29 "//third_party/iccjpeg", | 30 "//third_party/iccjpeg", |
| 30 "//third_party/libpng", | 31 "//third_party/libpng", |
| 31 "//third_party/ots", | 32 "//third_party/ots", |
| 32 "//third_party/qcms", | 33 "//third_party/qcms", |
| 33 "//third_party/zlib", | 34 "//third_party/zlib", |
| 34 "//url", | 35 "//url", |
| 35 "//v8", | 36 "//v8", |
| 36 ] | 37 ] |
| 37 } | 38 } |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 | 98 |
| 98 sources += [ | 99 sources += [ |
| 99 # Generated from CSSTokenizer-in.cpp | 100 # Generated from CSSTokenizer-in.cpp |
| 100 "$sky_core_output_dir/CSSTokenizer.cpp", | 101 "$sky_core_output_dir/CSSTokenizer.cpp", |
| 101 | 102 |
| 102 # Generated from BisonCSSParser-in.cpp | 103 # Generated from BisonCSSParser-in.cpp |
| 103 "$sky_core_output_dir/BisonCSSParser.cpp", | 104 "$sky_core_output_dir/BisonCSSParser.cpp", |
| 104 | 105 |
| 105 # Additional .cpp files from the make_core_generated rules. | 106 # Additional .cpp files from the make_core_generated rules. |
| 106 "$sky_core_output_dir/CSSGrammar.cpp", | 107 "$sky_core_output_dir/CSSGrammar.cpp", |
| 108 |
| 109 # Additional .cpp files from the inspector_protocol_sources list. |
| 110 "$sky_core_output_dir/InspectorFrontend.cpp", |
| 111 "$sky_core_output_dir/InspectorBackendDispatcher.cpp", |
| 112 "$sky_core_output_dir/InspectorTypeBuilder.cpp", |
| 107 ] | 113 ] |
| 108 | 114 |
| 109 configs += [ | 115 configs += [ |
| 110 "..:inside_blink", | 116 "..:inside_blink", |
| 111 ] | 117 ] |
| 112 | 118 |
| 113 deps = [ | 119 deps = [ |
| 114 ":make_core_generated", | 120 ":make_core_generated", |
| 115 ":prerequisites", | 121 ":prerequisites", |
| 116 "//gin", | 122 "//gin", |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 "$sky_core_output_dir/{{source_name_part}}.h", | 477 "$sky_core_output_dir/{{source_name_part}}.h", |
| 472 ] | 478 ] |
| 473 args = [ | 479 args = [ |
| 474 "{{source}}", | 480 "{{source}}", |
| 475 rel_sky_core_gen_dir, | 481 rel_sky_core_gen_dir, |
| 476 bison_exe, | 482 bison_exe, |
| 477 ] | 483 ] |
| 478 | 484 |
| 479 deps = make_core_generated_deps | 485 deps = make_core_generated_deps |
| 480 } | 486 } |
| OLD | NEW |