| 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/libfuzzer/fuzzer_test.gni") | 7 import("//testing/libfuzzer/fuzzer_test.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//third_party/WebKit/public/public_features.gni") | 9 import("//third_party/WebKit/public/public_features.gni") |
| 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 ] | 159 ] |
| 160 } | 160 } |
| 161 | 161 |
| 162 executable("character_data_generator") { | 162 executable("character_data_generator") { |
| 163 sources = [ | 163 sources = [ |
| 164 "text/CharacterPropertyDataGenerator.cpp", | 164 "text/CharacterPropertyDataGenerator.cpp", |
| 165 "text/CharacterPropertyDataGenerator.h", | 165 "text/CharacterPropertyDataGenerator.h", |
| 166 ] | 166 ] |
| 167 configs += [ "//third_party/WebKit/Source:config" ] | 167 configs += [ "//third_party/WebKit/Source:config" ] |
| 168 deps = [ | 168 deps = [ |
| 169 "//build/config/sanitizers:deps", | 169 "//build/config:exe_and_shlib_deps", |
| 170 | 170 |
| 171 # Default manifest on Windows (a no-op elsewhere). | 171 # Default manifest on Windows (a no-op elsewhere). |
| 172 "//build/win:default_exe_manifest", | 172 "//build/win:default_exe_manifest", |
| 173 "//third_party/icu", | 173 "//third_party/icu", |
| 174 ] | 174 ] |
| 175 } | 175 } |
| 176 | 176 |
| 177 # This isn't strictly necessary since we can just add the deps to "platform", | 177 # This isn't strictly necessary since we can just add the deps to "platform", |
| 178 # but it helps to have the targets match the GYP build. | 178 # but it helps to have the targets match the GYP build. |
| 179 group("make_platform_generated") { | 179 group("make_platform_generated") { |
| (...skipping 2058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2238 "//third_party/WebKit/Source:config", | 2238 "//third_party/WebKit/Source:config", |
| 2239 "//third_party/WebKit/Source:inside_blink", | 2239 "//third_party/WebKit/Source:inside_blink", |
| 2240 ] | 2240 ] |
| 2241 | 2241 |
| 2242 deps = [ | 2242 deps = [ |
| 2243 ":test_support", | 2243 ":test_support", |
| 2244 "//testing/gmock", | 2244 "//testing/gmock", |
| 2245 "//testing/gtest", | 2245 "//testing/gtest", |
| 2246 ] | 2246 ] |
| 2247 } | 2247 } |
| OLD | NEW |