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

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

Issue 1753543002: PaymentRequest Mojo bindings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@interface
Patch Set: Disable WTF-Mojo string serialization for now. Created 4 years, 9 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
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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'export_dependent_settings': [ 80 'export_dependent_settings': [
81 '../Source/web/web.gyp:blink_web_test_support', 81 '../Source/web/web.gyp:blink_web_test_support',
82 ], 82 ],
83 }, 83 },
84 { 84 {
85 'target_name': 'mojo_bindings_mojom', 85 'target_name': 'mojo_bindings_mojom',
86 'type': 'none', 86 'type': 'none',
87 'variables': { 87 'variables': {
88 'mojom_files': [ 88 'mojom_files': [
89 'platform/modules/bluetooth/web_bluetooth.mojom', 89 'platform/modules/bluetooth/web_bluetooth.mojom',
90 'platform/modules/payments/payment_request.mojom',
90 ], 91 ],
91 }, 92 },
92 'includes': [ 93 'includes': [
93 '../../../mojo/mojom_bindings_generator_explicit.gypi', 94 '../../../mojo/mojom_bindings_generator_explicit.gypi',
94 ], 95 ],
95 }, 96 },
96 { 97 {
97 'target_name': 'mojo_bindings', 98 'target_name': 'mojo_bindings',
98 'type': 'static_library', 99 'type': 'static_library',
99 'dependencies': [ 100 'dependencies': [
100 'mojo_bindings_mojom', 101 'mojo_bindings_mojom',
101 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', 102 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
102 ], 103 ],
103 }, 104 },
105 {
106 'target_name': 'mojo_bindings_mojom_for_blink',
107 'type': 'none',
108 'variables': {
109 'for_blink': 'true',
110 'mojom_variant': 'blink',
111 'mojom_files': [
112 'platform/modules/bluetooth/web_bluetooth.mojom',
113 'platform/modules/payments/payment_request.mojom',
114 ],
115 },
116 'includes': [
117 '../../../mojo/mojom_bindings_generator_explicit.gypi',
118 ],
119 },
120 {
121 'target_name': 'mojo_bindings_for_blink',
122 'type': 'static_library',
123 'dependencies': [
124 'mojo_bindings_mojom_for_blink',
125 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
126 ],
127 },
104 ], 128 ],
105 } 129 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698