| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 } | 162 } |
| 163 | 163 |
| 164 executable("character_data_generator") { | 164 executable("character_data_generator") { |
| 165 sources = [ | 165 sources = [ |
| 166 "text/CharacterPropertyDataGenerator.cpp", | 166 "text/CharacterPropertyDataGenerator.cpp", |
| 167 "text/CharacterPropertyDataGenerator.h", | 167 "text/CharacterPropertyDataGenerator.h", |
| 168 ] | 168 ] |
| 169 configs += [ "//third_party/WebKit/Source:config" ] | 169 configs += [ "//third_party/WebKit/Source:config" ] |
| 170 deps = [ | 170 deps = [ |
| 171 "//build/config/sanitizers:deps", | 171 "//build/config/sanitizers:deps", |
| 172 |
| 173 # Default manifest on Windows (a no-op elsewhere). |
| 174 "//build/win:default_exe_manifest", |
| 172 "//third_party/icu", | 175 "//third_party/icu", |
| 173 ] | 176 ] |
| 174 } | 177 } |
| 175 | 178 |
| 176 # Inspector protocol | 179 # Inspector protocol |
| 177 | 180 |
| 178 protocol_file = "../devtools/protocol.json" | 181 protocol_file = "../devtools/protocol.json" |
| 179 | 182 |
| 180 action("inspector_protocol_sources") { | 183 action("inspector_protocol_sources") { |
| 181 script = "inspector_protocol/CodeGenerator.py" | 184 script = "inspector_protocol/CodeGenerator.py" |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 } | 596 } |
| 594 | 597 |
| 595 if (current_cpu == "x86" || current_cpu == "x64") { | 598 if (current_cpu == "x86" || current_cpu == "x64") { |
| 596 source_set("blink_x86_sse") { | 599 source_set("blink_x86_sse") { |
| 597 sources = blink_platform_sse_files | 600 sources = blink_platform_sse_files |
| 598 deps = [ | 601 deps = [ |
| 599 ":blink_common", | 602 ":blink_common", |
| 600 ] | 603 ] |
| 601 } | 604 } |
| 602 } | 605 } |
| OLD | NEW |