| 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 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 ] | 57 ] |
| 58 } | 58 } |
| 59 | 59 |
| 60 static_library("core") { | 60 static_library("core") { |
| 61 output_name = "sky_core" | 61 output_name = "sky_core" |
| 62 | 62 |
| 63 deps = [ | 63 deps = [ |
| 64 ":core_generated", | 64 ":core_generated", |
| 65 ":libraries", | 65 ":libraries", |
| 66 ":prerequisites", | 66 ":prerequisites", |
| 67 "//sky/engine/platform", |
| 67 ] | 68 ] |
| 68 | 69 |
| 69 sources = sky_core_files | 70 sources = sky_core_files |
| 70 | 71 |
| 71 forward_dependent_configs_from = [ | 72 forward_dependent_configs_from = [ |
| 72 ":libraries", | 73 ":libraries", |
| 73 ] | 74 ] |
| 74 } | 75 } |
| 75 | 76 |
| 76 source_set("testing") { | 77 source_set("testing") { |
| 77 deps = [ | 78 deps = [ |
| 78 ":core", | 79 ":core", |
| 79 ":core_generated", | 80 ":core_generated", |
| 80 ":prerequisites", | 81 ":prerequisites", |
| 82 "//sky/engine/platform", |
| 83 "//sky/engine/wtf", |
| 81 ] | 84 ] |
| 82 | 85 |
| 83 sources = [ | 86 sources = [ |
| 84 "testing/DummyPageHolder.cpp", | 87 "testing/DummyPageHolder.cpp", |
| 85 "testing/DummyPageHolder.h", | 88 "testing/DummyPageHolder.h", |
| 86 "testing/NullExecutionContext.cpp", | 89 "testing/NullExecutionContext.cpp", |
| 87 "testing/NullExecutionContext.h", | 90 "testing/NullExecutionContext.h", |
| 88 "testing/URLTestHelpers.cpp", | 91 "testing/URLTestHelpers.cpp", |
| 89 "testing/URLTestHelpers.h", | 92 "testing/URLTestHelpers.h", |
| 90 ] | 93 ] |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 "$sky_core_output_dir/{{source_name_part}}.h", | 480 "$sky_core_output_dir/{{source_name_part}}.h", |
| 478 ] | 481 ] |
| 479 args = [ | 482 args = [ |
| 480 "{{source}}", | 483 "{{source}}", |
| 481 rel_sky_core_gen_dir, | 484 rel_sky_core_gen_dir, |
| 482 bison_exe, | 485 bison_exe, |
| 483 ] | 486 ] |
| 484 | 487 |
| 485 deps = make_core_generated_deps | 488 deps = make_core_generated_deps |
| 486 } | 489 } |
| OLD | NEW |