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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 } | 77 } |
78 | 78 |
79 # GYP version: WebKit/Source/core/core.gyp:webcore_prerequisites | 79 # GYP version: WebKit/Source/core/core.gyp:webcore_prerequisites |
80 source_set("prerequisites") { | 80 source_set("prerequisites") { |
81 public_deps = [ | 81 public_deps = [ |
82 "//third_party/WebKit/Source/wtf", | 82 "//third_party/WebKit/Source/wtf", |
83 "//gpu/command_buffer/client:gles2_c_lib", | 83 "//gpu/command_buffer/client:gles2_c_lib", |
84 "//skia", | 84 "//skia", |
85 "//third_party/angle:translator", | 85 "//third_party/angle:translator", |
86 "//third_party/iccjpeg", | 86 "//third_party/iccjpeg", |
| 87 "//third_party/icu", |
87 "//third_party/libpng", | 88 "//third_party/libpng", |
88 "//third_party/libwebp", | 89 "//third_party/libwebp", |
89 "//third_party/libxml", | 90 "//third_party/libxml", |
90 "//third_party/libxslt", | 91 "//third_party/libxslt", |
91 "//third_party/npapi", | 92 "//third_party/npapi", |
92 "//third_party/ots", | 93 "//third_party/ots", |
93 "//third_party/qcms", | 94 "//third_party/qcms", |
94 "//third_party/snappy", | 95 "//third_party/snappy", |
95 "//third_party/sqlite", | 96 "//third_party/sqlite", |
96 "//third_party/zlib", | 97 "//third_party/zlib", |
(...skipping 943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1040 "$blink_core_output_dir/{{source_name_part}}.h", | 1041 "$blink_core_output_dir/{{source_name_part}}.h", |
1041 ] | 1042 ] |
1042 args = [ | 1043 args = [ |
1043 "{{source}}", | 1044 "{{source}}", |
1044 rel_blink_core_gen_dir, | 1045 rel_blink_core_gen_dir, |
1045 bison_exe, | 1046 bison_exe, |
1046 ] | 1047 ] |
1047 | 1048 |
1048 deps = make_core_generated_deps | 1049 deps = make_core_generated_deps |
1049 } | 1050 } |
OLD | NEW |