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

Side by Side Diff: third_party/WebKit/public/blink.gyp

Issue 2156303003: Mojo C++ bindings: make the generator use STL/WTF string/vector/map by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into 72_switch_default 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 | « third_party/WebKit/public/BUILD.gn ('k') | ui/app_list/presenter/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 'mojom_files': [ 115 'mojom_files': [
116 '<@(blink_mojo_sources)', 116 '<@(blink_mojo_sources)',
117 '<@(blink_android_mojo_sources)', 117 '<@(blink_android_mojo_sources)',
118 ], 118 ],
119 'mojom_typemaps': [ 119 'mojom_typemaps': [
120 '<(DEPTH)/cc/ipc/surface_id.typemap', 120 '<(DEPTH)/cc/ipc/surface_id.typemap',
121 '<(DEPTH)/cc/ipc/surface_sequence.typemap', 121 '<(DEPTH)/cc/ipc/surface_sequence.typemap',
122 122
123 ], 123 ],
124 'for_blink': 'true', 124 'for_blink': 'true',
125 'use_new_wrapper_types': 'false',
125 }, 126 },
126 'dependencies' : [ 127 'dependencies' : [
127 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces_blink', 128 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces_blink',
128 ], 129 ],
129 'includes': [ 130 'includes': [
130 '../../../mojo/mojom_bindings_generator_explicit.gypi', 131 '../../../mojo/mojom_bindings_generator_explicit.gypi',
131 ], 132 ],
132 }, 133 },
133 { 134 {
134 # GN version: //third_party/WebKit/public:mojo_bindings 135 # GN version: //third_party/WebKit/public:mojo_bindings
135 'target_name': 'mojo_bindings_mojom', 136 'target_name': 'mojo_bindings_mojom',
136 'type': 'none', 137 'type': 'none',
137 'variables': { 138 'variables': {
138 'mojom_files': [ 139 'mojom_files': [
139 '<@(blink_mojo_sources)', 140 '<@(blink_mojo_sources)',
140 '<@(blink_android_mojo_sources)', 141 '<@(blink_android_mojo_sources)',
141 ], 142 ],
142 'mojom_typemaps': [ 143 'mojom_typemaps': [
143 '../../../device/bluetooth/public/interfaces/bluetooth_uuid.ty pemap', 144 '../../../device/bluetooth/public/interfaces/bluetooth_uuid.ty pemap',
144 '<(DEPTH)/cc/ipc/surface_id.typemap', 145 '<(DEPTH)/cc/ipc/surface_id.typemap',
145 '<(DEPTH)/cc/ipc/surface_sequence.typemap', 146 '<(DEPTH)/cc/ipc/surface_sequence.typemap',
146 ], 147 ],
148 'use_new_wrapper_types': 'false',
147 }, 149 },
148 'dependencies' : [ 150 'dependencies' : [
149 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces', 151 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces',
150 ], 152 ],
151 'includes': [ 153 'includes': [
152 '../../../mojo/mojom_bindings_generator_explicit.gypi', 154 '../../../mojo/mojom_bindings_generator_explicit.gypi',
153 ], 155 ],
154 }, 156 },
155 { 157 {
156 # GN version: //third_party/WebKit/public:mojo_bindings 158 # GN version: //third_party/WebKit/public:mojo_bindings
(...skipping 12 matching lines...) Expand all
169 }, 171 },
170 ], 172 ],
171 'conditions': [ 173 'conditions': [
172 ['OS == "android"', { 174 ['OS == "android"', {
173 'targets': [ 175 'targets': [
174 { 176 {
175 'target_name': 'android_mojo_bindings_mojom', 177 'target_name': 'android_mojo_bindings_mojom',
176 'type': 'none', 178 'type': 'none',
177 'variables': { 179 'variables': {
178 'mojom_files': ['<@(blink_android_mojo_sources)'], 180 'mojom_files': ['<@(blink_android_mojo_sources)'],
181 'use_new_wrapper_types': 'false',
179 }, 182 },
180 'includes': [ 183 'includes': [
181 '../../../mojo/mojom_bindings_generator_explicit.gypi', 184 '../../../mojo/mojom_bindings_generator_explicit.gypi',
182 ], 185 ],
183 }, 186 },
184 { 187 {
185 # GN version: //third_party/WebKit/public:android_mojo_bindi ngs_java 188 # GN version: //third_party/WebKit/public:android_mojo_bindi ngs_java
186 'target_name': 'android_mojo_bindings_java', 189 'target_name': 'android_mojo_bindings_java',
187 'type': 'static_library', 190 'type': 'static_library',
188 'dependencies': [ 191 'dependencies': [
189 'android_mojo_bindings_mojom', 192 'android_mojo_bindings_mojom',
190 '../../../mojo/mojo_public.gyp:mojo_bindings_java', 193 '../../../mojo/mojo_public.gyp:mojo_bindings_java',
191 ], 194 ],
192 }, 195 },
193 ], 196 ],
194 }], 197 }],
195 ], 198 ],
196 } 199 }
OLDNEW
« no previous file with comments | « third_party/WebKit/public/BUILD.gn ('k') | ui/app_list/presenter/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698