OLD | NEW |
---|---|
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 static_library("copresence") { | 5 static_library("copresence") { |
jochen (gone - plz use gerrit)
2014/07/31 20:38:48
isn't this missing the additional deps on content
rkc
2014/07/31 20:42:43
I am still learning GN :)
I'll make sure this is d
| |
6 sources = [ | 6 sources = [ |
7 "copresence_client.cc", | 7 "copresence_client.cc", |
8 "copresence_constants.cc", | |
9 "timed_map.h", | |
10 "handlers/audio/audio_directive_handler.cc", | |
11 "handlers/audio/audio_directive_handler.h", | |
12 "handlers/audio/audio_directive_list.cc", | |
13 "handlers/audio/audio_directive_list.h", | |
14 "handlers/directive_handler.cc", | |
15 "handlers/directive_handler.h", | |
16 "mediums/audio/audio_player.cc", | |
17 "mediums/audio/audio_player.h", | |
18 "mediums/audio/audio_recorder.cc", | |
19 "mediums/audio/audio_recorder.h", | |
8 "public/copresence_client_delegate.h", | 20 "public/copresence_client_delegate.h", |
9 "public/copresence_client.h", | 21 "public/copresence_client.h", |
22 "public/copresence_constants.h", | |
10 "public/whispernet_client.h", | 23 "public/whispernet_client.h", |
11 "rpc/rpc_handler.cc", | 24 "rpc/rpc_handler.cc", |
12 "rpc/rpc_handler.h", | 25 "rpc/rpc_handler.h", |
13 ] | 26 ] |
14 | 27 |
15 deps = [ | 28 deps = [ |
16 "//base", | 29 "//base", |
17 "//components/copresence/proto", | 30 "//components/copresence/proto", |
18 "//net", | 31 "//net", |
19 ] | 32 ] |
20 } | 33 } |
OLD | NEW |