| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 # then delete the precompile.c.obj file, then build again. | 231 # then delete the precompile.c.obj file, then build again. |
| 232 cflags_c = [ "/wd4206" ] | 232 cflags_c = [ "/wd4206" ] |
| 233 } | 233 } |
| 234 } | 234 } |
| 235 } | 235 } |
| 236 | 236 |
| 237 component("platform") { | 237 component("platform") { |
| 238 visibility = [] # Allow re-assignment of list. | 238 visibility = [] # Allow re-assignment of list. |
| 239 visibility = [ | 239 visibility = [ |
| 240 "//third_party/WebKit/*", | 240 "//third_party/WebKit/*", |
| 241 "//url/mojo:url_mojom_origin_blink_cpp_sources", | 241 "//url/mojo:url_mojom_origin_blink", |
| 242 "//url/mojo:url_mojom_gurl_blink_cpp_sources", | 242 "//url/mojo:url_mojom_gurl_blink", |
| 243 ] | 243 ] |
| 244 output_name = "blink_platform" | 244 output_name = "blink_platform" |
| 245 | 245 |
| 246 sources = [ | 246 sources = [ |
| 247 "AsyncFileSystemCallbacks.h", | 247 "AsyncFileSystemCallbacks.h", |
| 248 "CalculationValue.h", | 248 "CalculationValue.h", |
| 249 "ContentDecryptionModuleResult.h", | 249 "ContentDecryptionModuleResult.h", |
| 250 "ContentSettingCallbacks.cpp", | 250 "ContentSettingCallbacks.cpp", |
| 251 "ContentSettingCallbacks.h", | 251 "ContentSettingCallbacks.h", |
| 252 "ContextMenu.cpp", | 252 "ContextMenu.cpp", |
| (...skipping 1833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2086 "//third_party/WebKit/Source:config", | 2086 "//third_party/WebKit/Source:config", |
| 2087 "//third_party/WebKit/Source:inside_blink", | 2087 "//third_party/WebKit/Source:inside_blink", |
| 2088 ] | 2088 ] |
| 2089 | 2089 |
| 2090 deps = [ | 2090 deps = [ |
| 2091 ":test_support", | 2091 ":test_support", |
| 2092 "//testing/gmock", | 2092 "//testing/gmock", |
| 2093 "//testing/gtest", | 2093 "//testing/gtest", |
| 2094 ] | 2094 ] |
| 2095 } | 2095 } |
| OLD | NEW |