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

Side by Side Diff: components/copresence.gypi

Issue 444513005: Add the Copresence API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'copresence', 8 'target_name': 'copresence',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 17 matching lines...) Expand all
28 'copresence/handlers/directive_handler.cc', 28 'copresence/handlers/directive_handler.cc',
29 'copresence/handlers/directive_handler.h', 29 'copresence/handlers/directive_handler.h',
30 'copresence/mediums/audio/audio_player.cc', 30 'copresence/mediums/audio/audio_player.cc',
31 'copresence/mediums/audio/audio_player.h', 31 'copresence/mediums/audio/audio_player.h',
32 'copresence/mediums/audio/audio_recorder.cc', 32 'copresence/mediums/audio/audio_recorder.cc',
33 'copresence/mediums/audio/audio_recorder.h', 33 'copresence/mediums/audio/audio_recorder.h',
34 'copresence/public/copresence_client_delegate.h', 34 'copresence/public/copresence_client_delegate.h',
35 'copresence/public/copresence_client.h', 35 'copresence/public/copresence_client.h',
36 'copresence/public/copresence_constants.h', 36 'copresence/public/copresence_constants.h',
37 'copresence/public/whispernet_client.h', 37 'copresence/public/whispernet_client.h',
38 'copresence/rpc/rpc_handler.cc' 38 'copresence/rpc/rpc_handler.cc',
39 'copresence/rpc/rpc_handler.h' 39 'copresence/rpc/rpc_handler.h'
40 'copresence/timed_map.h', 40 'copresence/timed_map.h',
41 ], 41 ],
42 'export_dependent_settings': [ 42 'export_dependent_settings': [
43 'copresence_proto', 43 'copresence_proto',
44 ], 44 ],
45 }, 45 },
46 { 46 {
47 'target_name': 'copresence_test_support', 47 'target_name': 'copresence_test_support',
48 'type': 'static_library', 48 'type': 'static_library',
(...skipping 21 matching lines...) Expand all
70 'copresence/proto/rpcs.proto', 70 'copresence/proto/rpcs.proto',
71 ], 71 ],
72 'variables': { 72 'variables': {
73 'proto_in_dir': 'copresence/proto', 73 'proto_in_dir': 'copresence/proto',
74 'proto_out_dir': 'components/copresence/proto', 74 'proto_out_dir': 'components/copresence/proto',
75 }, 75 },
76 'includes': [ '../build/protoc.gypi' ] 76 'includes': [ '../build/protoc.gypi' ]
77 }, 77 },
78 ], 78 ],
79 } 79 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698