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

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: Update the links to the spec. 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 {
98 # GN version: //third_party/WebKit/public:mojo_bindings
97 'target_name': 'mojo_bindings', 99 'target_name': 'mojo_bindings',
98 'type': 'static_library', 100 'type': 'static_library',
99 'dependencies': [ 101 'dependencies': [
100 'mojo_bindings_mojom', 102 'mojo_bindings_mojom',
101 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', 103 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
102 ], 104 ],
103 }, 105 },
106 {
107 'target_name': 'mojo_bindings_mojom_for_blink',
108 'type': 'none',
109 'variables': {
110 'for_blink': 'true',
111 'mojom_variant': 'blink',
112 'mojom_files': [
113 'platform/modules/bluetooth/web_bluetooth.mojom',
114 'platform/modules/payments/payment_request.mojom',
115 ],
116 },
117 'includes': [
118 '../../../mojo/mojom_bindings_generator_explicit.gypi',
119 ],
120 },
121 {
122 # GN version: //third_party/WebKit/public:mojo_bindings_for_blink
123 'target_name': 'mojo_bindings_for_blink',
124 'type': 'static_library',
125 'dependencies': [
126 'mojo_bindings_mojom_for_blink',
127 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
128 ],
129 },
104 ], 130 ],
105 } 131 }
OLDNEW
« no previous file with comments | « third_party/WebKit/public/BUILD.gn ('k') | third_party/WebKit/public/platform/modules/payments/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698