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