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 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
519 | 519 |
520 if (is_win) { | 520 if (is_win) { |
521 sources += [ "text/LocaleWinTest.cpp" ] | 521 sources += [ "text/LocaleWinTest.cpp" ] |
522 } else if (is_mac) { | 522 } else if (is_mac) { |
523 sources += [ "text/LocaleMacTest.cpp" ] | 523 sources += [ "text/LocaleMacTest.cpp" ] |
524 } else if (is_posix) { | 524 } else if (is_posix) { |
525 sources += [ "text/LocaleICUTest.cpp" ] | 525 sources += [ "text/LocaleICUTest.cpp" ] |
526 } | 526 } |
527 | 527 |
528 if (!is_mac) { | 528 if (!is_mac) { |
529 sources += [ "scroll/ScrollAnimatorTest.cpp" ] | 529 sources += [ |
530 "scroll/ScrollAnimatorTest.cpp", | |
531 "scroll/ScrollbarThemeAuraTest.cpp", | |
jbroman
2016/05/11 21:24:08
The condition for this should probably match that
Bret
2016/05/12 00:18:12
Done.
| |
532 ] | |
530 } | 533 } |
531 | 534 |
532 sources += [ "testing/RunAllTests.cpp" ] | 535 sources += [ "testing/RunAllTests.cpp" ] |
533 | 536 |
534 configs += [ | 537 configs += [ |
535 "//third_party/WebKit/Source/wtf:wtf_config", | 538 "//third_party/WebKit/Source/wtf:wtf_config", |
536 "//third_party/WebKit/Source:config", | 539 "//third_party/WebKit/Source:config", |
537 ] | 540 ] |
538 | 541 |
539 deps = [ | 542 deps = [ |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
599 } | 602 } |
600 | 603 |
601 if (current_cpu == "x86" || current_cpu == "x64") { | 604 if (current_cpu == "x86" || current_cpu == "x64") { |
602 source_set("blink_x86_sse") { | 605 source_set("blink_x86_sse") { |
603 sources = blink_platform_sse_files | 606 sources = blink_platform_sse_files |
604 deps = [ | 607 deps = [ |
605 ":blink_common", | 608 ":blink_common", |
606 ] | 609 ] |
607 } | 610 } |
608 } | 611 } |
OLD | NEW |