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

Side by Side Diff: media/mojo/interfaces/mojo_bindings.gyp

Issue 1466633002: media: Add ProvisionFetcher mojo interface and implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase only Created 5 years, 1 month 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 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'targets': [ 5 'targets': [
6 { 6 {
7 # GN version: //media/mojo/interfaces 7 # GN version: //media/mojo/interfaces
8 'target_name': 'platform_verification_mojo_bindings', 8 'target_name': 'platform_verification_mojo_bindings',
9 'type': 'none', 9 'type': 'none',
10 'sources': [ 10 'sources': [
11 'platform_verification.mojom', 11 'platform_verification.mojom',
12 ], 12 ],
13 'includes': [ '../../../third_party/mojo/mojom_bindings_generator.gypi' ], 13 'includes': [ '../../../third_party/mojo/mojom_bindings_generator.gypi' ],
14 }, 14 },
15 { 15 {
16 'target_name': 'platform_verification_api', 16 'target_name': 'platform_verification_api',
17 'type': 'static_library', 17 'type': 'static_library',
18 'dependencies': [ 18 'dependencies': [
19 'platform_verification_mojo_bindings', 19 'platform_verification_mojo_bindings',
20 '../../../mojo/mojo_base.gyp:mojo_application_bindings', 20 '../../../mojo/mojo_base.gyp:mojo_application_bindings',
21 '../../../mojo/mojo_base.gyp:mojo_environment_chromium', 21 '../../../mojo/mojo_base.gyp:mojo_environment_chromium',
22 '../../../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 22 '../../../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
23 ], 23 ],
24 'sources': [ 24 'sources': [
25 '<(SHARED_INTERMEDIATE_DIR)/media/mojo/interfaces/platform_verification. mojom.cc', 25 '<(SHARED_INTERMEDIATE_DIR)/media/mojo/interfaces/platform_verification. mojom.cc',
26 '<(SHARED_INTERMEDIATE_DIR)/media/mojo/interfaces/platform_verification. mojom.h', 26 '<(SHARED_INTERMEDIATE_DIR)/media/mojo/interfaces/platform_verification. mojom.h',
27 ], 27 ],
28 }, 28 },
29 {
30 # GN version: //media/mojo/interfaces
31 'target_name': 'provision_fetcher_mojo_bindings',
32 'type': 'none',
33 'sources': [
34 'provision_fetcher.mojom',
35 ],
36 'includes': [ '../../../third_party/mojo/mojom_bindings_generator.gypi' ],
37 },
38 {
39 'target_name': 'provision_fetcher_api',
40 'type': 'static_library',
41 'dependencies': [
42 'provision_fetcher_mojo_bindings',
43 '../../../mojo/mojo_base.gyp:mojo_application_bindings',
44 '../../../mojo/mojo_base.gyp:mojo_environment_chromium',
45 '../../../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
46 ],
47 'sources': [
48 '<(SHARED_INTERMEDIATE_DIR)/media/mojo/interfaces/provision_fetcher.mojo m.cc',
49 '<(SHARED_INTERMEDIATE_DIR)/media/mojo/interfaces/provision_fetcher.mojo m.h',
50 ],
xhwang 2015/11/20 22:28:34 rockot: Does Mandoline support gyp build at all?
Ken Rockot(use gerrit already) 2015/11/24 17:35:58 No, and it won't
xhwang 2015/11/24 19:43:21 Acknowledged.
51 },
29 ], 52 ],
30 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698