| 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 11 matching lines...) Expand all Loading... |
| 22 blink_platform_sse_files = [ "graphics/cpu/x86/WebGLImageConversionSSE.h" ] | 22 blink_platform_sse_files = [ "graphics/cpu/x86/WebGLImageConversionSSE.h" ] |
| 23 | 23 |
| 24 # blink_common in blink_platform.gyp | 24 # blink_common in blink_platform.gyp |
| 25 component("blink_common") { | 25 component("blink_common") { |
| 26 visibility = [] # Allow re-assignment of list. | 26 visibility = [] # Allow re-assignment of list. |
| 27 visibility = [ "//third_party/WebKit/*" ] | 27 visibility = [ "//third_party/WebKit/*" ] |
| 28 sources = [ | 28 sources = [ |
| 29 "exported/WebCString.cpp", | 29 "exported/WebCString.cpp", |
| 30 "exported/WebCommon.cpp", | 30 "exported/WebCommon.cpp", |
| 31 "exported/WebString.cpp", | 31 "exported/WebString.cpp", |
| 32 "exported/WebStringUTF8Adaptor.cpp", |
| 32 ] | 33 ] |
| 33 | 34 |
| 34 defines = [ | 35 defines = [ |
| 35 "BLINK_COMMON_IMPLEMENTATION=1", | 36 "BLINK_COMMON_IMPLEMENTATION=1", |
| 36 "INSIDE_BLINK", | 37 "INSIDE_BLINK", |
| 37 ] | 38 ] |
| 38 | 39 |
| 39 configs += [ | 40 configs += [ |
| 40 "//build/config/compiler:wexit_time_destructors", | 41 "//build/config/compiler:wexit_time_destructors", |
| 41 "//third_party/WebKit/Source:config", | 42 "//third_party/WebKit/Source:config", |
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 } | 480 } |
| 480 | 481 |
| 481 if (current_cpu == "x86" || current_cpu == "x64") { | 482 if (current_cpu == "x86" || current_cpu == "x64") { |
| 482 source_set("blink_x86_sse") { | 483 source_set("blink_x86_sse") { |
| 483 sources = blink_platform_sse_files | 484 sources = blink_platform_sse_files |
| 484 deps = [ | 485 deps = [ |
| 485 ":blink_common", | 486 ":blink_common", |
| 486 ] | 487 ] |
| 487 } | 488 } |
| 488 } | 489 } |
| OLD | NEW |