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