| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 9 import("//third_party/WebKit/Source/config.gni") | 9 import("//third_party/WebKit/Source/config.gni") |
| 10 import("//third_party/WebKit/Source/platform/platform.gni") | 10 import("//third_party/WebKit/Source/platform/platform.gni") |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 ":make_platform_generated", | 355 ":make_platform_generated", |
| 356 "//base", | 356 "//base", |
| 357 "//cc", | 357 "//cc", |
| 358 "//gpu/command_buffer/client:gles2_c_lib", | 358 "//gpu/command_buffer/client:gles2_c_lib", |
| 359 "//gpu/command_buffer/client:gles2_interface", | 359 "//gpu/command_buffer/client:gles2_interface", |
| 360 "//gpu/command_buffer/common:common", | 360 "//gpu/command_buffer/common:common", |
| 361 "//net", | 361 "//net", |
| 362 "//skia", | 362 "//skia", |
| 363 "//third_party:jpeg", | 363 "//third_party:jpeg", |
| 364 "//third_party/WebKit/Source/wtf", | 364 "//third_party/WebKit/Source/wtf", |
| 365 "//third_party/WebKit/public:mojo_bindings_blink", |
| 365 "//third_party/iccjpeg", | 366 "//third_party/iccjpeg", |
| 366 "//third_party/libpng", | 367 "//third_party/libpng", |
| 367 "//third_party/libwebp", | 368 "//third_party/libwebp", |
| 368 "//third_party/ots", | 369 "//third_party/ots", |
| 369 "//third_party/qcms", | 370 "//third_party/qcms", |
| 370 "//url", | 371 "//url", |
| 371 "//v8", | 372 "//v8", |
| 372 ] | 373 ] |
| 373 deps = [ | 374 deps = [ |
| 374 ":blink_common", | 375 ":blink_common", |
| 375 "//components/link_header_util:link_header_util", | 376 "//components/link_header_util:link_header_util", |
| 376 "//mojo/public/cpp/bindings", | 377 "//mojo/public/cpp/bindings", |
| 377 "//mojo/public/cpp/bindings:wtf_support", | 378 "//mojo/public/cpp/bindings:wtf_support", |
| 378 "//third_party/WebKit/Source/platform/heap", | 379 "//third_party/WebKit/Source/platform/heap", |
| 379 "//third_party/WebKit/public:mojo_bindings_blink", | |
| 380 "//third_party/ced", | 380 "//third_party/ced", |
| 381 "//third_party/harfbuzz-ng", | 381 "//third_party/harfbuzz-ng", |
| 382 "//third_party/icu", | 382 "//third_party/icu", |
| 383 "//ui/gfx", | 383 "//ui/gfx", |
| 384 "//ui/gfx/geometry", | 384 "//ui/gfx/geometry", |
| 385 ] | 385 ] |
| 386 | 386 |
| 387 if (is_mac) { | 387 if (is_mac) { |
| 388 sources -= [ | 388 sources -= [ |
| 389 # Uses KillRingMac.mm instead. | 389 # Uses KillRingMac.mm instead. |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 } | 643 } |
| 644 | 644 |
| 645 if (current_cpu == "x86" || current_cpu == "x64") { | 645 if (current_cpu == "x86" || current_cpu == "x64") { |
| 646 source_set("blink_x86_sse") { | 646 source_set("blink_x86_sse") { |
| 647 sources = blink_platform_sse_files | 647 sources = blink_platform_sse_files |
| 648 deps = [ | 648 deps = [ |
| 649 ":blink_common", | 649 ":blink_common", |
| 650 ] | 650 ] |
| 651 } | 651 } |
| 652 } | 652 } |
| OLD | NEW |