| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//third_party/WebKit/Source/bindings/bindings.gni") | 7 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") | 8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") |
| 9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") |
| 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "//third_party/libpng", | 101 "//third_party/libpng", |
| 102 "//third_party/libwebp", | 102 "//third_party/libwebp", |
| 103 "//third_party/libxml", | 103 "//third_party/libxml", |
| 104 "//third_party/libxslt", | 104 "//third_party/libxslt", |
| 105 "//third_party/npapi", | 105 "//third_party/npapi", |
| 106 "//third_party/ots", | 106 "//third_party/ots", |
| 107 "//third_party/qcms", | 107 "//third_party/qcms", |
| 108 "//third_party/snappy", | 108 "//third_party/snappy", |
| 109 "//third_party/sqlite", | 109 "//third_party/sqlite", |
| 110 "//third_party/zlib", | 110 "//third_party/zlib", |
| 111 "//ui/gfx/geometry", |
| 111 "//url", | 112 "//url", |
| 112 "//v8", | 113 "//v8", |
| 113 ] | 114 ] |
| 114 deps = [ | 115 deps = [ |
| 115 ":make_core_generated", | 116 ":make_core_generated", |
| 116 "inspector:instrumentation_sources", | 117 "inspector:instrumentation_sources", |
| 117 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", | 118 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", |
| 118 | 119 |
| 119 # FIXME: don't depend on bindings_modules http://crbug.com/358074 | 120 # FIXME: don't depend on bindings_modules http://crbug.com/358074 |
| 120 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated"
, | 121 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated"
, |
| (...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1034 "$blink_core_output_dir/{{source_name_part}}.h", | 1035 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1035 ] | 1036 ] |
| 1036 args = [ | 1037 args = [ |
| 1037 "{{source}}", | 1038 "{{source}}", |
| 1038 rel_blink_core_gen_dir, | 1039 rel_blink_core_gen_dir, |
| 1039 bison_exe, | 1040 bison_exe, |
| 1040 ] | 1041 ] |
| 1041 | 1042 |
| 1042 deps = make_core_generated_deps | 1043 deps = make_core_generated_deps |
| 1043 } | 1044 } |
| OLD | NEW |