| 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 | |
| 386 sources += [ "testing/RunAllTests.cpp" ] | 382 sources += [ "testing/RunAllTests.cpp" ] |
| 387 | 383 |
| 388 configs += [ | 384 configs += [ |
| 389 "//third_party/WebKit/Source/wtf:wtf_config", | 385 "//third_party/WebKit/Source/wtf:wtf_config", |
| 390 "//third_party/WebKit/Source:config", | 386 "//third_party/WebKit/Source:config", |
| 391 ] | 387 ] |
| 392 | 388 |
| 393 deps = [ | 389 deps = [ |
| 394 ":blink_common", | 390 ":blink_common", |
| 395 ":platform", | 391 ":platform", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 } | 429 } |
| 434 | 430 |
| 435 if (current_cpu == "x86" || current_cpu == "x64") { | 431 if (current_cpu == "x86" || current_cpu == "x64") { |
| 436 source_set("blink_x86_sse") { | 432 source_set("blink_x86_sse") { |
| 437 sources = blink_platform_sse_files | 433 sources = blink_platform_sse_files |
| 438 deps = [ | 434 deps = [ |
| 439 ":blink_common", | 435 ":blink_common", |
| 440 ] | 436 ] |
| 441 } | 437 } |
| 442 } | 438 } |
| OLD | NEW |