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("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 7 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
9 import("//third_party/WebKit/Source/platform/platform.gni") | 9 import("//third_party/WebKit/Source/platform/platform.gni") |
10 import("//third_party/WebKit/Source/platform/platform_generated.gni") | 10 import("//third_party/WebKit/Source/platform/platform_generated.gni") |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 "BLINK_PLATFORM_IMPLEMENTATION=1", | 189 "BLINK_PLATFORM_IMPLEMENTATION=1", |
190 "INSIDE_BLINK", | 190 "INSIDE_BLINK", |
191 ] | 191 ] |
192 | 192 |
193 include_dirs = [ | 193 include_dirs = [ |
194 #"$angle_path/include", | 194 #"$angle_path/include", |
195 "$root_gen_dir/blink", | 195 "$root_gen_dir/blink", |
196 ] | 196 ] |
197 | 197 |
198 public_deps = [ | 198 public_deps = [ |
| 199 "//base", |
| 200 "//cc", |
199 "//gpu/command_buffer/client:gles2_c_lib", | 201 "//gpu/command_buffer/client:gles2_c_lib", |
200 "//skia", | 202 "//skia", |
201 "//third_party:jpeg", | 203 "//third_party:jpeg", |
202 "//third_party/iccjpeg", | 204 "//third_party/iccjpeg", |
203 "//third_party/libpng", | 205 "//third_party/libpng", |
204 "//third_party/libwebp", | 206 "//third_party/libwebp", |
205 "//third_party/ots", | 207 "//third_party/ots", |
206 "//third_party/qcms", | 208 "//third_party/qcms", |
207 "//url", | 209 "//url", |
208 "//v8", | 210 "//v8", |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 } | 431 } |
430 | 432 |
431 if (current_cpu == "x86" || current_cpu == "x64") { | 433 if (current_cpu == "x86" || current_cpu == "x64") { |
432 source_set("blink_x86_sse") { | 434 source_set("blink_x86_sse") { |
433 sources = blink_platform_sse_files | 435 sources = blink_platform_sse_files |
434 deps = [ | 436 deps = [ |
435 ":blink_common", | 437 ":blink_common", |
436 ] | 438 ] |
437 } | 439 } |
438 } | 440 } |
OLD | NEW |