| 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 "//third_party/ots", | 342 "//third_party/ots", |
| 343 "//third_party/qcms", | 343 "//third_party/qcms", |
| 344 "//url", | 344 "//url", |
| 345 "//v8", | 345 "//v8", |
| 346 ] | 346 ] |
| 347 deps = [ | 347 deps = [ |
| 348 "//mojo/public/c/system:for_component", | 348 "//mojo/public/c/system:for_component", |
| 349 "//mojo/public/cpp/bindings:callback", | 349 "//mojo/public/cpp/bindings:callback", |
| 350 "//mojo/public/cpp/bindings:wtf_support", | 350 "//mojo/public/cpp/bindings:wtf_support", |
| 351 "//third_party/WebKit/Source/platform/heap", | 351 "//third_party/WebKit/Source/platform/heap", |
| 352 "//third_party/WebKit/public:mojo_bindings_wtf", | 352 "//third_party/WebKit/public:mojo_bindings", |
| 353 "//third_party/WebKit/public:mojo_bindings_blink", |
| 353 "//third_party/harfbuzz-ng", | 354 "//third_party/harfbuzz-ng", |
| 354 "//third_party/icu", | 355 "//third_party/icu", |
| 355 "//ui/gfx", | 356 "//ui/gfx", |
| 356 "//ui/gfx/geometry", | 357 "//ui/gfx/geometry", |
| 357 ] | 358 ] |
| 358 | 359 |
| 359 if (is_mac) { | 360 if (is_mac) { |
| 360 sources -= [ | 361 sources -= [ |
| 361 # Uses KillRingMac.mm instead. | 362 # Uses KillRingMac.mm instead. |
| 362 "KillRingNone.cpp", | 363 "KillRingNone.cpp", |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 600 } | 601 } |
| 601 | 602 |
| 602 if (current_cpu == "x86" || current_cpu == "x64") { | 603 if (current_cpu == "x86" || current_cpu == "x64") { |
| 603 source_set("blink_x86_sse") { | 604 source_set("blink_x86_sse") { |
| 604 sources = blink_platform_sse_files | 605 sources = blink_platform_sse_files |
| 605 deps = [ | 606 deps = [ |
| 606 ":blink_common", | 607 ":blink_common", |
| 607 ] | 608 ] |
| 608 } | 609 } |
| 609 } | 610 } |
| OLD | NEW |