| 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 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 += [ "scroll/ScrollAnimatorTest.cpp" ] |
| 530 } | 530 } |
| 531 | 531 |
| 532 if (use_default_render_theme) { |
| 533 sources += [ "scroll/ScrollbarThemeAuraTest.cpp" ] |
| 534 } |
| 535 |
| 532 sources += [ "testing/RunAllTests.cpp" ] | 536 sources += [ "testing/RunAllTests.cpp" ] |
| 533 | 537 |
| 534 configs += [ | 538 configs += [ |
| 535 "//third_party/WebKit/Source/wtf:wtf_config", | 539 "//third_party/WebKit/Source/wtf:wtf_config", |
| 536 "//third_party/WebKit/Source:config", | 540 "//third_party/WebKit/Source:config", |
| 537 ] | 541 ] |
| 538 | 542 |
| 539 deps = [ | 543 deps = [ |
| 540 ":blink_common", | 544 ":blink_common", |
| 541 ":platform", | 545 ":platform", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 } | 603 } |
| 600 | 604 |
| 601 if (current_cpu == "x86" || current_cpu == "x64") { | 605 if (current_cpu == "x86" || current_cpu == "x64") { |
| 602 source_set("blink_x86_sse") { | 606 source_set("blink_x86_sse") { |
| 603 sources = blink_platform_sse_files | 607 sources = blink_platform_sse_files |
| 604 deps = [ | 608 deps = [ |
| 605 ":blink_common", | 609 ":blink_common", |
| 606 ] | 610 ] |
| 607 } | 611 } |
| 608 } | 612 } |
| OLD | NEW |