Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: third_party/WebKit/Source/platform/weborigin/BUILD.gn

Issue 2194973002: Fix linker warning in broadcast_channel.mojom-blink.obj. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tighten deps Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/mojo/SecurityOrigin.typemap ('k') | third_party/WebKit/Source/platform/weborigin/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698