OLD | NEW |
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 21 matching lines...) Expand all Loading... |
32 '../url/url.gyp:url_mojom', | 32 '../url/url.gyp:url_mojom', |
33 ], | 33 ], |
34 'export_dependent_settings': [ | 34 'export_dependent_settings': [ |
35 '../url/url.gyp:url_mojom', | 35 '../url/url.gyp:url_mojom', |
36 ], | 36 ], |
37 'variables': { | 37 'variables': { |
38 'mojom_typemaps': [ | 38 'mojom_typemaps': [ |
39 '../url/mojo/gurl.typemap', | 39 '../url/mojo/gurl.typemap', |
40 '../url/mojo/origin.typemap', | 40 '../url/mojo/origin.typemap', |
41 ], | 41 ], |
| 42 'use_new_wrapper_types': 'false', |
42 }, | 43 }, |
43 'includes': [ | 44 'includes': [ |
44 '../mojo/mojom_bindings_generator.gypi', | 45 '../mojo/mojom_bindings_generator.gypi', |
45 ], | 46 ], |
46 }, | 47 }, |
47 { | 48 { |
48 'target_name': 'webmessaging_mojo_bindings_for_blink', | 49 'target_name': 'webmessaging_mojo_bindings_for_blink', |
49 'type': 'static_library', | 50 'type': 'static_library', |
50 'sources': [ '<@(mojom_files)' ], | 51 'sources': [ '<@(mojom_files)' ], |
51 'dependencies': [ | 52 'dependencies': [ |
52 '../url/url.gyp:url_mojom_for_blink', | 53 '../url/url.gyp:url_mojom_for_blink', |
53 ], | 54 ], |
54 'export_dependent_settings': [ | 55 'export_dependent_settings': [ |
55 '../url/url.gyp:url_mojom_for_blink', | 56 '../url/url.gyp:url_mojom_for_blink', |
56 ], | 57 ], |
57 'variables': { | 58 'variables': { |
58 'for_blink': 'true', | 59 'for_blink': 'true', |
59 'mojom_typemaps': [ | 60 'mojom_typemaps': [ |
60 '../third_party/WebKit/Source/platform/mojo/KURL.typemap', | 61 '../third_party/WebKit/Source/platform/mojo/KURL.typemap', |
61 '../third_party/WebKit/Source/platform/mojo/SecurityOrigin.typemap', | 62 '../third_party/WebKit/Source/platform/mojo/SecurityOrigin.typemap', |
62 ], | 63 ], |
| 64 'use_new_wrapper_types': 'false', |
63 }, | 65 }, |
64 'includes': [ | 66 'includes': [ |
65 '../mojo/mojom_bindings_generator.gypi', | 67 '../mojo/mojom_bindings_generator.gypi', |
66 ], | 68 ], |
67 }, | 69 }, |
68 ], | 70 ], |
69 } | 71 } |
OLD | NEW |