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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 "BLINK_PLATFORM_IMPLEMENTATION=1", | 216 "BLINK_PLATFORM_IMPLEMENTATION=1", |
217 "INSIDE_BLINK", | 217 "INSIDE_BLINK", |
218 ] | 218 ] |
219 | 219 |
220 include_dirs = [ | 220 include_dirs = [ |
221 #"$angle_path/include", | 221 #"$angle_path/include", |
222 "$root_gen_dir/blink", | 222 "$root_gen_dir/blink", |
223 ] | 223 ] |
224 | 224 |
225 public_deps = [ | 225 public_deps = [ |
| 226 ":make_platform_generated", |
226 "//base", | 227 "//base", |
227 "//cc", | 228 "//cc", |
228 "//gpu/command_buffer/client:gles2_c_lib", | 229 "//gpu/command_buffer/client:gles2_c_lib", |
229 "//skia", | 230 "//skia", |
230 "//third_party:jpeg", | 231 "//third_party:jpeg", |
231 "//third_party/WebKit/Source/wtf", | 232 "//third_party/WebKit/Source/wtf", |
232 "//third_party/iccjpeg", | 233 "//third_party/iccjpeg", |
233 "//third_party/libpng", | 234 "//third_party/libpng", |
234 "//third_party/libwebp", | 235 "//third_party/libwebp", |
235 "//third_party/ots", | 236 "//third_party/ots", |
236 "//third_party/qcms", | 237 "//third_party/qcms", |
237 "//url", | 238 "//url", |
238 "//v8", | 239 "//v8", |
239 ] | 240 ] |
240 deps = [ | 241 deps = [ |
241 ":make_platform_generated", | |
242 "//third_party/WebKit/Source/platform/heap", | 242 "//third_party/WebKit/Source/platform/heap", |
243 "//third_party/harfbuzz-ng", | 243 "//third_party/harfbuzz-ng", |
244 "//third_party/icu", | 244 "//third_party/icu", |
245 "//ui/gfx", | 245 "//ui/gfx", |
246 "//ui/gfx/geometry", | 246 "//ui/gfx/geometry", |
247 ] | 247 ] |
248 | 248 |
249 if (is_mac) { | 249 if (is_mac) { |
250 sources -= [ | 250 sources -= [ |
251 # Uses KillRingMac.mm instead. | 251 # Uses KillRingMac.mm instead. |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
470 } | 470 } |
471 | 471 |
472 if (current_cpu == "x86" || current_cpu == "x64") { | 472 if (current_cpu == "x86" || current_cpu == "x64") { |
473 source_set("blink_x86_sse") { | 473 source_set("blink_x86_sse") { |
474 sources = blink_platform_sse_files | 474 sources = blink_platform_sse_files |
475 deps = [ | 475 deps = [ |
476 ":blink_common", | 476 ":blink_common", |
477 ] | 477 ] |
478 } | 478 } |
479 } | 479 } |
OLD | NEW |