| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 9 import("//third_party/WebKit/Source/config.gni") | 9 import("//third_party/WebKit/Source/config.gni") |
| 10 import("//third_party/WebKit/Source/platform/platform.gni") | 10 import("//third_party/WebKit/Source/platform/platform.gni") |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 include_dirs += [ "//third_party/openmax_dl" ] | 465 include_dirs += [ "//third_party/openmax_dl" ] |
| 466 deps += [ "//third_party/openmax_dl/dl" ] | 466 deps += [ "//third_party/openmax_dl/dl" ] |
| 467 } | 467 } |
| 468 | 468 |
| 469 if (remove_webcore_debug_symbols) { | 469 if (remove_webcore_debug_symbols) { |
| 470 configs -= [ "//build/config/compiler:default_symbols" ] | 470 configs -= [ "//build/config/compiler:default_symbols" ] |
| 471 configs += [ "//build/config/compiler:no_symbols" ] | 471 configs += [ "//build/config/compiler:no_symbols" ] |
| 472 } | 472 } |
| 473 } | 473 } |
| 474 | 474 |
| 475 source_set("test_support") { | 475 static_library("test_support") { |
| 476 sources = platform_test_support_files | 476 sources = platform_test_support_files |
| 477 visibility += [ "//third_party/WebKit/*" ] | 477 visibility += [ "//third_party/WebKit/*" ] |
| 478 testonly = true | 478 testonly = true |
| 479 | 479 |
| 480 configs += [ | 480 configs += [ |
| 481 "//third_party/WebKit/Source:config", | 481 "//third_party/WebKit/Source:config", |
| 482 "//third_party/WebKit/Source:inside_blink", | 482 "//third_party/WebKit/Source:inside_blink", |
| 483 "//third_party/WebKit/Source:non_test_config", | 483 "//third_party/WebKit/Source:non_test_config", |
| 484 ] | 484 ] |
| 485 | 485 |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 } | 630 } |
| 631 | 631 |
| 632 if (current_cpu == "x86" || current_cpu == "x64") { | 632 if (current_cpu == "x86" || current_cpu == "x64") { |
| 633 source_set("blink_x86_sse") { | 633 source_set("blink_x86_sse") { |
| 634 sources = blink_platform_sse_files | 634 sources = blink_platform_sse_files |
| 635 deps = [ | 635 deps = [ |
| 636 ":blink_common", | 636 ":blink_common", |
| 637 ] | 637 ] |
| 638 } | 638 } |
| 639 } | 639 } |
| OLD | NEW |