| 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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 | 480 |
| 481 configs += [ | 481 configs += [ |
| 482 "//third_party/WebKit/Source/wtf:wtf_config", | 482 "//third_party/WebKit/Source/wtf:wtf_config", |
| 483 "//third_party/WebKit/Source:config", | 483 "//third_party/WebKit/Source:config", |
| 484 ] | 484 ] |
| 485 | 485 |
| 486 defines = [ "INSIDE_BLINK" ] | 486 defines = [ "INSIDE_BLINK" ] |
| 487 | 487 |
| 488 deps = [ | 488 deps = [ |
| 489 ":platform", | 489 ":platform", |
| 490 ":test_support", |
| 490 "//base", | 491 "//base", |
| 491 "//base/test:test_support", | 492 "//base/test:test_support", |
| 492 "//content/test:test_support", | 493 "//content/test:test_support", |
| 493 "//testing/gmock", | 494 "//testing/gmock", |
| 494 "//testing/gtest", | 495 "//testing/gtest", |
| 495 "//third_party/WebKit/Source/platform:test_support", | |
| 496 "//third_party/WebKit/Source/wtf", | 496 "//third_party/WebKit/Source/wtf", |
| 497 ] | 497 ] |
| 498 if (is_android) { | 498 if (is_android) { |
| 499 deps += [ | 499 deps += [ |
| 500 "//base:base_java", | 500 "//base:base_java", |
| 501 "//content/shell/android:content_shell_assets", | 501 "//content/shell/android:content_shell_assets", |
| 502 "//net/android:net_java", | 502 "//net/android:net_java", |
| 503 ] | 503 ] |
| 504 } | 504 } |
| 505 } | 505 } |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 } | 592 } |
| 593 | 593 |
| 594 if (current_cpu == "x86" || current_cpu == "x64") { | 594 if (current_cpu == "x86" || current_cpu == "x64") { |
| 595 source_set("blink_x86_sse") { | 595 source_set("blink_x86_sse") { |
| 596 sources = blink_platform_sse_files | 596 sources = blink_platform_sse_files |
| 597 deps = [ | 597 deps = [ |
| 598 ":blink_common", | 598 ":blink_common", |
| 599 ] | 599 ] |
| 600 } | 600 } |
| 601 } | 601 } |
| OLD | NEW |