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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//third_party/WebKit/Source/bindings/bindings.gni") | 6 import("//third_party/WebKit/Source/bindings/bindings.gni") |
7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") | 7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") |
8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") | 8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") |
9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 "//skia", | 83 "//skia", |
84 "//third_party/angle:translator", | 84 "//third_party/angle:translator", |
85 "//third_party/iccjpeg", | 85 "//third_party/iccjpeg", |
86 "//third_party/libpng", | 86 "//third_party/libpng", |
87 "//third_party/libwebp", | 87 "//third_party/libwebp", |
88 "//third_party/libxml", | 88 "//third_party/libxml", |
89 "//third_party/libxslt", | 89 "//third_party/libxslt", |
90 "//third_party/npapi", | 90 "//third_party/npapi", |
91 "//third_party/ots", | 91 "//third_party/ots", |
92 "//third_party/qcms", | 92 "//third_party/qcms", |
93 "//third_party/snappy", | |
94 "//third_party/sqlite", | 93 "//third_party/sqlite", |
95 "//third_party/zlib", | 94 "//third_party/zlib", |
96 "//url", | 95 "//url", |
97 "//v8", | 96 "//v8", |
98 ] | 97 ] |
99 deps = [ | 98 deps = [ |
100 ":make_core_generated", | 99 ":make_core_generated", |
101 "inspector:protocol_sources", | 100 "inspector:protocol_sources", |
102 "inspector:instrumentation_sources", | 101 "inspector:instrumentation_sources", |
103 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", | 102 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", |
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1071 "$blink_core_output_dir/{{source_name_part}}.h", | 1070 "$blink_core_output_dir/{{source_name_part}}.h", |
1072 ] | 1071 ] |
1073 args = [ | 1072 args = [ |
1074 "{{source}}", | 1073 "{{source}}", |
1075 rel_blink_core_gen_dir, | 1074 rel_blink_core_gen_dir, |
1076 bison_exe, | 1075 bison_exe, |
1077 ] | 1076 ] |
1078 | 1077 |
1079 deps = make_core_generated_deps | 1078 deps = make_core_generated_deps |
1080 } | 1079 } |
OLD | NEW |