| 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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 ] | 319 ] |
| 320 | 320 |
| 321 public_deps = [ | 321 public_deps = [ |
| 322 ":make_platform_generated", | 322 ":make_platform_generated", |
| 323 "//base", | 323 "//base", |
| 324 "//cc", | 324 "//cc", |
| 325 "//gpu/command_buffer/client:gles2_c_lib", | 325 "//gpu/command_buffer/client:gles2_c_lib", |
| 326 "//skia", | 326 "//skia", |
| 327 "//third_party:jpeg", | 327 "//third_party:jpeg", |
| 328 "//third_party/WebKit/Source/wtf", | 328 "//third_party/WebKit/Source/wtf", |
| 329 "//third_party/harfbuzz-ng", |
| 329 "//third_party/iccjpeg", | 330 "//third_party/iccjpeg", |
| 330 "//third_party/libpng", | 331 "//third_party/libpng", |
| 331 "//third_party/libwebp", | 332 "//third_party/libwebp", |
| 332 "//third_party/ots", | 333 "//third_party/ots", |
| 333 "//third_party/qcms", | 334 "//third_party/qcms", |
| 334 "//url", | 335 "//url", |
| 335 "//v8", | 336 "//v8", |
| 336 ] | 337 ] |
| 337 deps = [ | 338 deps = [ |
| 338 "//device/battery:mojo_bindings", | 339 "//device/battery:mojo_bindings", |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 589 } | 590 } |
| 590 | 591 |
| 591 if (current_cpu == "x86" || current_cpu == "x64") { | 592 if (current_cpu == "x86" || current_cpu == "x64") { |
| 592 source_set("blink_x86_sse") { | 593 source_set("blink_x86_sse") { |
| 593 sources = blink_platform_sse_files | 594 sources = blink_platform_sse_files |
| 594 deps = [ | 595 deps = [ |
| 595 ":blink_common", | 596 ":blink_common", |
| 596 ] | 597 ] |
| 597 } | 598 } |
| 598 } | 599 } |
| OLD | NEW |