| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 deps = [ | 364 deps = [ |
| 365 ":blink_common", | 365 ":blink_common", |
| 366 "//components/link_header_util:link_header_util", | 366 "//components/link_header_util:link_header_util", |
| 367 "//mojo/public/cpp/bindings", | 367 "//mojo/public/cpp/bindings", |
| 368 "//mojo/public/cpp/bindings:wtf_support", | 368 "//mojo/public/cpp/bindings:wtf_support", |
| 369 "//third_party/WebKit/Source/platform/heap", | 369 "//third_party/WebKit/Source/platform/heap", |
| 370 "//third_party/WebKit/public:mojo_bindings_blink", | 370 "//third_party/WebKit/public:mojo_bindings_blink", |
| 371 "//third_party/ced", | 371 "//third_party/ced", |
| 372 "//third_party/harfbuzz-ng", | 372 "//third_party/harfbuzz-ng", |
| 373 "//third_party/icu", | 373 "//third_party/icu", |
| 374 "//third_party/zlib:compression_utils", |
| 374 "//ui/gfx", | 375 "//ui/gfx", |
| 375 "//ui/gfx/geometry", | 376 "//ui/gfx/geometry", |
| 376 ] | 377 ] |
| 377 | 378 |
| 378 if (is_mac) { | 379 if (is_mac) { |
| 379 sources -= [ | 380 sources -= [ |
| 380 # Uses KillRingMac.mm instead. | 381 # Uses KillRingMac.mm instead. |
| 381 "KillRingNone.cpp", | 382 "KillRingNone.cpp", |
| 382 "fonts/skia/FontCacheSkia.cpp", | 383 "fonts/skia/FontCacheSkia.cpp", |
| 383 "scroll/ScrollAnimator.cpp", | 384 "scroll/ScrollAnimator.cpp", |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 } | 635 } |
| 635 | 636 |
| 636 if (current_cpu == "x86" || current_cpu == "x64") { | 637 if (current_cpu == "x86" || current_cpu == "x64") { |
| 637 source_set("blink_x86_sse") { | 638 source_set("blink_x86_sse") { |
| 638 sources = blink_platform_sse_files | 639 sources = blink_platform_sse_files |
| 639 deps = [ | 640 deps = [ |
| 640 ":blink_common", | 641 ":blink_common", |
| 641 ] | 642 ] |
| 642 } | 643 } |
| 643 } | 644 } |
| OLD | NEW |