| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 180 | 180 | 
| 181       # Force include the header. | 181       # Force include the header. | 
| 182       cflags = [ "/FI$precompiled_header" ] | 182       cflags = [ "/FI$precompiled_header" ] | 
| 183     } | 183     } | 
| 184   } | 184   } | 
| 185 } | 185 } | 
| 186 | 186 | 
| 187 component("platform") { | 187 component("platform") { | 
| 188   visibility = []  # Allow re-assignment of list. | 188   visibility = []  # Allow re-assignment of list. | 
| 189   visibility = [ | 189   visibility = [ | 
|  | 190     "//components/pdf/common:interfaces_blink", | 
| 190     "//third_party/WebKit/*", | 191     "//third_party/WebKit/*", | 
| 191     "//url/mojo:url_mojom_origin_blink", | 192     "//url/mojo:url_mojom_origin_blink", | 
| 192     "//url/mojo:url_mojom_gurl_blink", | 193     "//url/mojo:url_mojom_gurl_blink", | 
| 193   ] | 194   ] | 
| 194   output_name = "blink_platform" | 195   output_name = "blink_platform" | 
| 195 | 196 | 
| 196   sources = [ | 197   sources = [ | 
| 197     "AsyncFileSystemCallbacks.h", | 198     "AsyncFileSystemCallbacks.h", | 
| 198     "CalculationValue.h", | 199     "CalculationValue.h", | 
| 199     "ContentDecryptionModuleResult.h", | 200     "ContentDecryptionModuleResult.h", | 
| (...skipping 1887 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 2087     "//third_party/WebKit/Source:config", | 2088     "//third_party/WebKit/Source:config", | 
| 2088     "//third_party/WebKit/Source:inside_blink", | 2089     "//third_party/WebKit/Source:inside_blink", | 
| 2089   ] | 2090   ] | 
| 2090 | 2091 | 
| 2091   deps = [ | 2092   deps = [ | 
| 2092     ":test_support", | 2093     ":test_support", | 
| 2093     "//testing/gmock", | 2094     "//testing/gmock", | 
| 2094     "//testing/gtest", | 2095     "//testing/gtest", | 
| 2095   ] | 2096   ] | 
| 2096 } | 2097 } | 
| OLD | NEW | 
|---|