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

Side by Side Diff: components/webmessaging.gypi

Issue 2136523002: Don't depend on url_mojom_for_blink in the webmessaging target (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | 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 2016 The Chromium Authors. All rights reserved. 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 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 'mojom_files': [ 8 'mojom_files': [
9 'webmessaging/public/interfaces/broadcast_channel.mojom', 9 'webmessaging/public/interfaces/broadcast_channel.mojom',
10 ], 10 ],
(...skipping 30 matching lines...) Expand all
41 ], 41 ],
42 }, 42 },
43 'includes': [ 43 'includes': [
44 '../mojo/mojom_bindings_generator.gypi', 44 '../mojo/mojom_bindings_generator.gypi',
45 ], 45 ],
46 }, 46 },
47 { 47 {
48 'target_name': 'webmessaging_mojo_bindings_for_blink', 48 'target_name': 'webmessaging_mojo_bindings_for_blink',
49 'type': 'static_library', 49 'type': 'static_library',
50 'sources': [ '<@(mojom_files)' ], 50 'sources': [ '<@(mojom_files)' ],
51 'dependencies': [
52 '../url/url.gyp:url_mojom_for_blink',
53 ],
54 'export_dependent_settings': [
55 '../url/url.gyp:url_mojom_for_blink',
56 ],
57 'variables': { 51 'variables': {
58 'for_blink': 'true', 52 'for_blink': 'true',
59 'mojom_typemaps': [ 53 'mojom_typemaps': [
60 '../third_party/WebKit/Source/platform/mojo/KURL.typemap', 54 '../third_party/WebKit/Source/platform/mojo/KURL.typemap',
61 '../third_party/WebKit/Source/platform/mojo/SecurityOrigin.typemap', 55 '../third_party/WebKit/Source/platform/mojo/SecurityOrigin.typemap',
62 ], 56 ],
63 }, 57 },
58 'dependencies': [
59 '../url/url.gyp:url_mojom',
60 ],
61 'export_dependent_settings': [
62 '../url/url.gyp:url_mojom',
63 ],
64
64 'includes': [ 65 'includes': [
65 '../mojo/mojom_bindings_generator.gypi', 66 '../mojo/mojom_bindings_generator.gypi',
66 ], 67 ],
67 }, 68 },
68 ], 69 ],
69 } 70 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698