| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 component("weborigin") { |
| 6 # This target is a logical part of the platform and only the platform target |
| 7 # and internal mojo targets should depend on it. |
| 8 visibility = [ |
| 9 "//third_party/WebKit/Source/platform", |
| 10 "//third_party/WebKit/public:mojo_bindings", |
| 11 "//url/mojo:url_mojom_gurl_blink_cpp_sources", |
| 12 "//url/mojo:url_mojom_origin_blink_cpp_sources", |
| 13 ] |
| 14 |
| 15 sources = [ |
| 16 "KURL.cpp", |
| 17 "KURL.h", |
| 18 "KURLHash.h", |
| 19 "KnownPorts.cpp", |
| 20 "KnownPorts.h", |
| 21 "OriginAccessEntry.cpp", |
| 22 "OriginAccessEntry.h", |
| 23 "Referrer.h", |
| 24 "ReferrerPolicy.h", |
| 25 "SchemeRegistry.cpp", |
| 26 "SchemeRegistry.h", |
| 27 "SecurityOrigin.cpp", |
| 28 "SecurityOrigin.h", |
| 29 "SecurityOriginCache.h", |
| 30 "SecurityOriginHash.h", |
| 31 "SecurityPolicy.cpp", |
| 32 "SecurityPolicy.h", |
| 33 "Suborigin.cpp", |
| 34 "Suborigin.h", |
| 35 ] |
| 36 |
| 37 defines = [ |
| 38 "ORIGIN_IMPLEMENTATION=1", |
| 39 "INSIDE_BLINK", |
| 40 ] |
| 41 |
| 42 configs += [ |
| 43 "//third_party/WebKit/Source:config", |
| 44 "//third_party/WebKit/Source:non_test_config", |
| 45 "//build/config/compiler:no_size_t_to_int_warning", |
| 46 ] |
| 47 |
| 48 public_deps = [ |
| 49 "//net", |
| 50 "//third_party/WebKit/Source/platform:runtime_enabled_features", |
| 51 "//third_party/WebKit/Source/wtf", |
| 52 "//url", |
| 53 ] |
| 54 } |
| OLD | NEW |