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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 "BLINK_PLATFORM_IMPLEMENTATION=1", | 192 "BLINK_PLATFORM_IMPLEMENTATION=1", |
193 "INSIDE_BLINK", | 193 "INSIDE_BLINK", |
194 ] | 194 ] |
195 | 195 |
196 include_dirs = [ | 196 include_dirs = [ |
197 #"$angle_path/include", | 197 #"$angle_path/include", |
198 "$root_gen_dir/blink", | 198 "$root_gen_dir/blink", |
199 ] | 199 ] |
200 | 200 |
201 public_deps = [ | 201 public_deps = [ |
| 202 "//base", |
202 "//gpu/command_buffer/client:gles2_c_lib", | 203 "//gpu/command_buffer/client:gles2_c_lib", |
203 "//skia", | 204 "//skia", |
204 "//third_party:jpeg", | 205 "//third_party:jpeg", |
205 "//third_party/iccjpeg", | 206 "//third_party/iccjpeg", |
206 "//third_party/libpng", | 207 "//third_party/libpng", |
207 "//third_party/libwebp", | 208 "//third_party/libwebp", |
208 "//third_party/ots", | 209 "//third_party/ots", |
209 "//third_party/qcms", | 210 "//third_party/qcms", |
210 "//url", | 211 "//url", |
211 "//v8", | 212 "//v8", |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 } | 424 } |
424 | 425 |
425 if (current_cpu == "x86" || current_cpu == "x64") { | 426 if (current_cpu == "x86" || current_cpu == "x64") { |
426 source_set("blink_x86_sse") { | 427 source_set("blink_x86_sse") { |
427 sources = blink_platform_sse_files | 428 sources = blink_platform_sse_files |
428 deps = [ | 429 deps = [ |
429 ":blink_common", | 430 ":blink_common", |
430 ] | 431 ] |
431 } | 432 } |
432 } | 433 } |
OLD | NEW |