| 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 | 376 |
| 377 configs += [ | 377 configs += [ |
| 378 "//third_party/WebKit/Source/wtf:wtf_config", | 378 "//third_party/WebKit/Source/wtf:wtf_config", |
| 379 "//third_party/WebKit/Source:config", | 379 "//third_party/WebKit/Source:config", |
| 380 ] | 380 ] |
| 381 | 381 |
| 382 deps = [ | 382 deps = [ |
| 383 ":blink_common", | 383 ":blink_common", |
| 384 ":platform", | 384 ":platform", |
| 385 ":test_support", | 385 ":test_support", |
| 386 "//base", | 386 "//base", # There is probably a better place to add this dependency, this
is eazy-lazy. |
| 387 "//base/allocator", | 387 "//base/allocator", |
| 388 "//base/test:test_support", | 388 "//base/test:test_support", |
| 389 "//skia", | 389 "//skia", |
| 390 "//testing/gmock", | 390 "//testing/gmock", |
| 391 "//testing/gtest", | 391 "//testing/gtest", |
| 392 "//third_party/harfbuzz-ng", | 392 "//third_party/harfbuzz-ng", |
| 393 "//third_party/WebKit/Source/wtf", | 393 "//third_party/WebKit/Source/wtf", |
| 394 "//third_party/WebKit/Source/wtf:test_support", | 394 "//third_party/WebKit/Source/wtf:test_support", |
| 395 "//url", | 395 "//url", |
| 396 ] | 396 ] |
| (...skipping 26 matching lines...) Expand all Loading... |
| 423 } | 423 } |
| 424 | 424 |
| 425 if (current_cpu == "x86" || current_cpu == "x64") { | 425 if (current_cpu == "x86" || current_cpu == "x64") { |
| 426 source_set("blink_x86_sse") { | 426 source_set("blink_x86_sse") { |
| 427 sources = blink_platform_sse_files | 427 sources = blink_platform_sse_files |
| 428 deps = [ | 428 deps = [ |
| 429 ":blink_common", | 429 ":blink_common", |
| 430 ] | 430 ] |
| 431 } | 431 } |
| 432 } | 432 } |
| OLD | NEW |