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

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: try to fix gyp rules 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',
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 {
153 # GN version: //url/mojo:url_mojom_gurl and //url/mojo:url_mojom_origin
137 'target_name': 'url_mojom', 154 'target_name': 'url_mojom',
138 'type': 'static_library', 155 'type': 'static_library',
139 'export_dependent_settings': [ 156 'export_dependent_settings': [
140 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 157 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
141 ], 158 ],
142 'dependencies': [ 159 'dependencies': [
143 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 160 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
144 'url_interfaces_mojom', 161 'url_interfaces_mojom',
145 'url_lib', 162 'url_lib',
146 ], 163 ],
147 }, 164 },
148 { 165 {
166 # GN version: //url/mojo:url_mojom_gurl_blink and //url/mojo:url_mojom_ori gin_blink
167 'target_name': 'url_mojom_for_blink',
168 'type': 'static_library',
169 'export_dependent_settings': [
170 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
171 ],
172 'dependencies': [
173 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
174 'url_interfaces_mojom_for_blink',
175 'url_lib',
176 ],
177 },
178 {
179 # GN version: //url/mojo:test_url_mojom_gurl
149 'target_name': 'url_test_interfaces_mojom', 180 'target_name': 'url_test_interfaces_mojom',
150 'type': 'none', 181 'type': 'none',
151 'variables': { 182 'variables': {
152 'mojom_files': [ 183 'mojom_files': [
153 'mojo/url_test.mojom', 184 'mojo/url_test.mojom',
154 ], 185 ],
155 'mojom_typemaps': [ 186 'mojom_typemaps': [
156 'mojo/gurl.typemap', 187 'mojo/gurl.typemap',
157 'mojo/origin.typemap', 188 'mojo/origin.typemap',
158 ], 189 ],
159 }, 190 },
160 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ], 191 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ],
161 'dependencies': [ 192 'dependencies': [
162 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 193 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
163 ], 194 ],
164 }, 195 },
165 { 196 {
197 # GN version: //url/mojo:test_url_mojom_gurl_blink
198 'target_name': 'url_test_interfaces_mojom_for_blink',
199 'type': 'none',
200 'variables': {
201 'for_blink': 'true',
202 'mojom_files': [
203 'mojo/url_test.mojom',
204 ],
205 'mojom_typemaps': [
206 '../third_party/WebKit/Source/platform/mojo/KURL.typemap',
207 '../third_party/WebKit/Source/platform/mojo/SecurityOrigin.typemap',
208 ],
209 },
210 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ],
211 'dependencies': [
212 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
213 ],
214 },
215 {
166 'target_name': 'url_test_mojom', 216 'target_name': 'url_test_mojom',
167 'type': 'static_library', 217 'type': 'static_library',
168 'export_dependent_settings': [ 218 'export_dependent_settings': [
169 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 219 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
170 ], 220 ],
171 'dependencies': [ 221 'dependencies': [
172 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 222 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
173 'url_lib', 223 'url_lib',
174 'url_mojom', 224 'url_mojom',
175 'url_test_interfaces_mojom', 225 'url_test_interfaces_mojom',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 '../build/isolate.gypi', 276 '../build/isolate.gypi',
227 ], 277 ],
228 'sources': [ 278 'sources': [
229 'url_unittests.isolate', 279 'url_unittests.isolate',
230 ], 280 ],
231 }, 281 },
232 ], 282 ],
233 }], 283 }],
234 ], 284 ],
235 } 285 }
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