| 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 "//url", | 360 "//url", |
| 361 "//v8", | 361 "//v8", |
| 362 ] | 362 ] |
| 363 deps = [ | 363 deps = [ |
| 364 ":blink_common", | 364 ":blink_common", |
| 365 "//components/link_header_util:link_header_util", | 365 "//components/link_header_util:link_header_util", |
| 366 "//mojo/public/cpp/bindings", | 366 "//mojo/public/cpp/bindings", |
| 367 "//mojo/public/cpp/bindings:wtf_support", | 367 "//mojo/public/cpp/bindings:wtf_support", |
| 368 "//third_party/WebKit/Source/platform/heap", | 368 "//third_party/WebKit/Source/platform/heap", |
| 369 "//third_party/WebKit/public:mojo_bindings_blink", | 369 "//third_party/WebKit/public:mojo_bindings_blink", |
| 370 "//third_party/ced", |
| 370 "//third_party/harfbuzz-ng", | 371 "//third_party/harfbuzz-ng", |
| 371 "//third_party/icu", | 372 "//third_party/icu", |
| 372 "//ui/gfx", | 373 "//ui/gfx", |
| 373 "//ui/gfx/geometry", | 374 "//ui/gfx/geometry", |
| 374 ] | 375 ] |
| 375 | 376 |
| 376 if (is_mac) { | 377 if (is_mac) { |
| 377 sources -= [ | 378 sources -= [ |
| 378 # Uses KillRingMac.mm instead. | 379 # Uses KillRingMac.mm instead. |
| 379 "KillRingNone.cpp", | 380 "KillRingNone.cpp", |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 } | 625 } |
| 625 | 626 |
| 626 if (current_cpu == "x86" || current_cpu == "x64") { | 627 if (current_cpu == "x86" || current_cpu == "x64") { |
| 627 source_set("blink_x86_sse") { | 628 source_set("blink_x86_sse") { |
| 628 sources = blink_platform_sse_files | 629 sources = blink_platform_sse_files |
| 629 deps = [ | 630 deps = [ |
| 630 ":blink_common", | 631 ":blink_common", |
| 631 ] | 632 ] |
| 632 } | 633 } |
| 633 } | 634 } |
| OLD | NEW |