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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 sources = platform_test_files | 372 sources = platform_test_files |
373 | 373 |
374 if (is_win) { | 374 if (is_win) { |
375 sources += [ "text/LocaleWinTest.cpp" ] | 375 sources += [ "text/LocaleWinTest.cpp" ] |
376 } else if (is_mac) { | 376 } else if (is_mac) { |
377 sources += [ "text/LocaleMacTest.cpp" ] | 377 sources += [ "text/LocaleMacTest.cpp" ] |
378 } else if (is_posix) { | 378 } else if (is_posix) { |
379 sources += [ "text/LocaleICUTest.cpp" ] | 379 sources += [ "text/LocaleICUTest.cpp" ] |
380 } | 380 } |
381 | 381 |
| 382 if (!is_mac) { |
| 383 sources += [ "scroll/ScrollAnimatorTest.cpp" ] |
| 384 } |
| 385 |
382 sources += [ "testing/RunAllTests.cpp" ] | 386 sources += [ "testing/RunAllTests.cpp" ] |
383 | 387 |
384 configs += [ | 388 configs += [ |
385 "//third_party/WebKit/Source/wtf:wtf_config", | 389 "//third_party/WebKit/Source/wtf:wtf_config", |
386 "//third_party/WebKit/Source:config", | 390 "//third_party/WebKit/Source:config", |
387 ] | 391 ] |
388 | 392 |
389 deps = [ | 393 deps = [ |
390 ":blink_common", | 394 ":blink_common", |
391 ":platform", | 395 ":platform", |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 } | 433 } |
430 | 434 |
431 if (current_cpu == "x86" || current_cpu == "x64") { | 435 if (current_cpu == "x86" || current_cpu == "x64") { |
432 source_set("blink_x86_sse") { | 436 source_set("blink_x86_sse") { |
433 sources = blink_platform_sse_files | 437 sources = blink_platform_sse_files |
434 deps = [ | 438 deps = [ |
435 ":blink_common", | 439 ":blink_common", |
436 ] | 440 ] |
437 } | 441 } |
438 } | 442 } |
OLD | NEW |