| 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", |
| 93 "//third_party/sqlite", | 94 "//third_party/sqlite", |
| 94 "//third_party/zlib", | 95 "//third_party/zlib", |
| 95 "//url", | 96 "//url", |
| 96 "//v8", | 97 "//v8", |
| 97 ] | 98 ] |
| 98 deps = [ | 99 deps = [ |
| 99 ":make_core_generated", | 100 ":make_core_generated", |
| 100 "inspector:protocol_sources", | 101 "inspector:protocol_sources", |
| 101 "inspector:instrumentation_sources", | 102 "inspector:instrumentation_sources", |
| 102 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", | 103 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", |
| (...skipping 963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1066 "$blink_core_output_dir/{{source_name_part}}.h", | 1067 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1067 ] | 1068 ] |
| 1068 args = [ | 1069 args = [ |
| 1069 "{{source}}", | 1070 "{{source}}", |
| 1070 rel_blink_core_gen_dir, | 1071 rel_blink_core_gen_dir, |
| 1071 bison_exe, | 1072 bison_exe, |
| 1072 ] | 1073 ] |
| 1073 | 1074 |
| 1074 deps = make_core_generated_deps | 1075 deps = make_core_generated_deps |
| 1075 } | 1076 } |
| OLD | NEW |