| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 } else if (is_mac) { | 207 } else if (is_mac) { |
| 208 precompiled_source = | 208 precompiled_source = |
| 209 "//third_party/WebKit/Source/platform/Precompile-platform.h" | 209 "//third_party/WebKit/Source/platform/Precompile-platform.h" |
| 210 } | 210 } |
| 211 } | 211 } |
| 212 } | 212 } |
| 213 | 213 |
| 214 component("platform") { | 214 component("platform") { |
| 215 visibility = [] # Allow re-assignment of list. | 215 visibility = [] # Allow re-assignment of list. |
| 216 visibility = [ | 216 visibility = [ |
| 217 "//components/pdf/common:interfaces_blink", |
| 217 "//third_party/WebKit/*", | 218 "//third_party/WebKit/*", |
| 218 "//url/mojo:url_mojom_origin_blink", | 219 "//url/mojo:url_mojom_origin_blink", |
| 219 "//url/mojo:url_mojom_gurl_blink", | 220 "//url/mojo:url_mojom_gurl_blink", |
| 220 ] | 221 ] |
| 221 output_name = "blink_platform" | 222 output_name = "blink_platform" |
| 222 | 223 |
| 223 sources = [ | 224 sources = [ |
| 224 "AsyncFileSystemCallbacks.h", | 225 "AsyncFileSystemCallbacks.h", |
| 225 "AsyncMethodRunner.h", | 226 "AsyncMethodRunner.h", |
| 226 "CalculationValue.h", | 227 "CalculationValue.h", |
| (...skipping 1929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2156 "//third_party/WebKit/Source:config", | 2157 "//third_party/WebKit/Source:config", |
| 2157 "//third_party/WebKit/Source:inside_blink", | 2158 "//third_party/WebKit/Source:inside_blink", |
| 2158 ] | 2159 ] |
| 2159 | 2160 |
| 2160 deps = [ | 2161 deps = [ |
| 2161 ":test_support", | 2162 ":test_support", |
| 2162 "//testing/gmock", | 2163 "//testing/gmock", |
| 2163 "//testing/gtest", | 2164 "//testing/gtest", |
| 2164 ] | 2165 ] |
| 2165 } | 2166 } |
| OLD | NEW |