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

Side by Side Diff: url/url.gyp

Issue 2000253006: Implement URL and Origin typemaps/struct traits for blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 6 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
« no previous file with comments | « third_party/WebKit/Source/platform/mojo/blink_typemaps.gni ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'url_srcs.gypi', 10 'url_srcs.gypi',
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 'mojo/url.mojom', 127 'mojo/url.mojom',
128 ], 128 ],
129 'mojom_typemaps': [ 129 'mojom_typemaps': [
130 'mojo/gurl.typemap', 130 'mojo/gurl.typemap',
131 'mojo/origin.typemap', 131 'mojo/origin.typemap',
132 ], 132 ],
133 }, 133 },
134 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ], 134 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ],
135 }, 135 },
136 { 136 {
137 'target_name': 'url_interfaces_mojom_for_blink',
brettw 2016/05/27 20:15:04 Can this have a comment about where the GN code is
Marijn Kruisselbrink 2016/05/27 20:29:02 url_features seems to be the only target that has
Marijn Kruisselbrink 2016/05/27 20:35:55 But maybe having a non-perfect match comment is st
138 'type': 'none',
139 'variables': {
140 'for_blink': 'true',
141 'mojom_files': [
142 'mojo/origin.mojom',
143 'mojo/url.mojom',
144 ],
145 'mojom_typemaps': [
146 '../third_party/WebKit/Source/platform/mojo/KURL.typemap',
147 '../third_party/WebKit/Source/platform/mojo/SecurityOrigin.typemap',
148 ],
149 },
150 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ],
151 },
152 {
137 'target_name': 'url_mojom', 153 'target_name': 'url_mojom',
138 'type': 'static_library', 154 'type': 'static_library',
139 'export_dependent_settings': [ 155 'export_dependent_settings': [
140 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 156 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
141 ], 157 ],
142 'dependencies': [ 158 'dependencies': [
143 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 159 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
144 'url_interfaces_mojom', 160 'url_interfaces_mojom',
145 'url_lib', 161 'url_lib',
146 ], 162 ],
147 }, 163 },
148 { 164 {
149 'target_name': 'url_test_interfaces_mojom', 165 'target_name': 'url_test_interfaces_mojom',
150 'type': 'none', 166 'type': 'none',
151 'variables': { 167 'variables': {
152 'mojom_files': [ 168 'mojom_files': [
153 'mojo/url_test.mojom', 169 'mojo/url_test.mojom',
154 ], 170 ],
155 'mojom_typemaps': [ 171 'mojom_typemaps': [
156 'mojo/gurl.typemap', 172 'mojo/gurl.typemap',
157 'mojo/origin.typemap', 173 'mojo/origin.typemap',
158 ], 174 ],
159 }, 175 },
160 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ], 176 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ],
161 'dependencies': [ 177 'dependencies': [
162 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 178 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
163 ], 179 ],
164 }, 180 },
165 { 181 {
182 'target_name': 'url_test_interfaces_mojom_for_blink',
183 'type': 'none',
184 'variables': {
185 'for_blink': 'true',
186 'mojom_files': [
187 'mojo/url_test.mojom',
188 ],
189 'mojom_typemaps': [
190 '../third_party/WebKit/Source/platform/mojo/KURL.typemap',
191 '../third_party/WebKit/Source/platform/mojo/SecurityOrigin.typemap',
192 ],
193 },
194 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ],
195 'dependencies': [
196 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
197 ],
198 },
199 {
166 'target_name': 'url_test_mojom', 200 'target_name': 'url_test_mojom',
167 'type': 'static_library', 201 'type': 'static_library',
168 'export_dependent_settings': [ 202 'export_dependent_settings': [
169 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 203 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
170 ], 204 ],
171 'dependencies': [ 205 'dependencies': [
172 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 206 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
173 'url_lib', 207 'url_lib',
174 'url_mojom', 208 'url_mojom',
175 'url_test_interfaces_mojom', 209 'url_test_interfaces_mojom',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 '../build/isolate.gypi', 260 '../build/isolate.gypi',
227 ], 261 ],
228 'sources': [ 262 'sources': [
229 'url_unittests.isolate', 263 'url_unittests.isolate',
230 ], 264 ],
231 }, 265 },
232 ], 266 ],
233 }], 267 }],
234 ], 268 ],
235 } 269 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/mojo/blink_typemaps.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698