| 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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 } else if (is_mac) { | 537 } else if (is_mac) { |
| 538 sources += [ "text/LocaleMacTest.cpp" ] | 538 sources += [ "text/LocaleMacTest.cpp" ] |
| 539 } else if (is_posix) { | 539 } else if (is_posix) { |
| 540 sources += [ "text/LocaleICUTest.cpp" ] | 540 sources += [ "text/LocaleICUTest.cpp" ] |
| 541 } | 541 } |
| 542 | 542 |
| 543 if (!is_mac) { | 543 if (!is_mac) { |
| 544 sources += [ "scroll/ScrollAnimatorTest.cpp" ] | 544 sources += [ "scroll/ScrollAnimatorTest.cpp" ] |
| 545 } | 545 } |
| 546 | 546 |
| 547 if (use_default_render_theme) { |
| 548 sources += [ "scroll/ScrollbarThemeAuraTest.cpp" ] |
| 549 } |
| 550 |
| 547 sources += [ "testing/RunAllTests.cpp" ] | 551 sources += [ "testing/RunAllTests.cpp" ] |
| 548 | 552 |
| 549 configs += [ | 553 configs += [ |
| 550 "//third_party/WebKit/Source/wtf:wtf_config", | 554 "//third_party/WebKit/Source/wtf:wtf_config", |
| 551 "//third_party/WebKit/Source:config", | 555 "//third_party/WebKit/Source:config", |
| 552 ] | 556 ] |
| 553 | 557 |
| 554 deps = [ | 558 deps = [ |
| 555 ":blink_common", | 559 ":blink_common", |
| 556 ":platform", | 560 ":platform", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 614 } | 618 } |
| 615 | 619 |
| 616 if (current_cpu == "x86" || current_cpu == "x64") { | 620 if (current_cpu == "x86" || current_cpu == "x64") { |
| 617 source_set("blink_x86_sse") { | 621 source_set("blink_x86_sse") { |
| 618 sources = blink_platform_sse_files | 622 sources = blink_platform_sse_files |
| 619 deps = [ | 623 deps = [ |
| 620 ":blink_common", | 624 ":blink_common", |
| 621 ] | 625 ] |
| 622 } | 626 } |
| 623 } | 627 } |
| OLD | NEW |