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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 ":blink_common", | 535 ":blink_common", |
536 ":platform", | 536 ":platform", |
537 ":test_support", | 537 ":test_support", |
538 "//base", | 538 "//base", |
539 "//base/test:test_support", | 539 "//base/test:test_support", |
540 "//cc", | 540 "//cc", |
541 "//cc:test_support", | 541 "//cc:test_support", |
542 "//cc/blink", | 542 "//cc/blink", |
543 "//mojo/edk/embedder:headers", | 543 "//mojo/edk/embedder:headers", |
544 "//mojo/edk/test:test_support", | 544 "//mojo/edk/test:test_support", |
| 545 "//mojo/public/cpp/bindings/tests:for_blink_tests", |
545 "//skia", | 546 "//skia", |
546 "//testing/gmock", | 547 "//testing/gmock", |
547 "//testing/gtest", | 548 "//testing/gtest", |
548 "//third_party/WebKit/Source/wtf", | 549 "//third_party/WebKit/Source/wtf", |
549 "//third_party/WebKit/Source/wtf:test_support", | 550 "//third_party/WebKit/Source/wtf:test_support", |
550 "//third_party/harfbuzz-ng", | 551 "//third_party/harfbuzz-ng", |
551 "//ui/gfx", | 552 "//ui/gfx", |
552 "//ui/gfx/geometry", | 553 "//ui/gfx/geometry", |
553 "//url", | 554 "//url", |
554 ] | 555 ] |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
594 } | 595 } |
595 | 596 |
596 if (current_cpu == "x86" || current_cpu == "x64") { | 597 if (current_cpu == "x86" || current_cpu == "x64") { |
597 source_set("blink_x86_sse") { | 598 source_set("blink_x86_sse") { |
598 sources = blink_platform_sse_files | 599 sources = blink_platform_sse_files |
599 deps = [ | 600 deps = [ |
600 ":blink_common", | 601 ":blink_common", |
601 ] | 602 ] |
602 } | 603 } |
603 } | 604 } |
OLD | NEW |