OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | |
viettrungluu
2014/04/28 21:25:50
This file probably should be in the cpp subdirecto
yzshen1
2014/04/28 22:57:20
I put it here because of the js/bindings/constants
viettrungluu
2014/04/28 23:32:47
Yes.
yzshen1
2014/04/29 03:58:13
Done.
| |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 source_set("bindings") { | |
6 sources = [ | |
7 "cpp/bindings/allocation_scope.h", | |
8 "cpp/bindings/array.h", | |
9 "cpp/bindings/buffer.h", | |
10 "cpp/bindings/callback.h", | |
11 "cpp/bindings/error_handler.h", | |
12 "cpp/bindings/interface.h", | |
13 "cpp/bindings/message.h", | |
14 "cpp/bindings/passable.h", | |
15 "cpp/bindings/remote_ptr.h", | |
16 "cpp/bindings/sync_dispatcher.h", | |
17 "cpp/bindings/type_converter.h", | |
18 "cpp/bindings/lib/array.cc", | |
19 "cpp/bindings/lib/array_internal.h", | |
20 "cpp/bindings/lib/array_internal.cc", | |
21 "cpp/bindings/lib/bindings_internal.h", | |
22 "cpp/bindings/lib/bindings_serialization.cc", | |
23 "cpp/bindings/lib/bindings_serialization.h", | |
24 "cpp/bindings/lib/buffer.cc", | |
25 "cpp/bindings/lib/callback_internal.h", | |
26 "cpp/bindings/lib/connector.cc", | |
27 "cpp/bindings/lib/connector.h", | |
28 "cpp/bindings/lib/fixed_buffer.cc", | |
29 "cpp/bindings/lib/fixed_buffer.h", | |
30 "cpp/bindings/lib/interface.cc", | |
31 "cpp/bindings/lib/message.cc", | |
32 "cpp/bindings/lib/message_builder.cc", | |
33 "cpp/bindings/lib/message_builder.h", | |
34 "cpp/bindings/lib/message_internal.h", | |
35 "cpp/bindings/lib/message_queue.cc", | |
36 "cpp/bindings/lib/message_queue.h", | |
37 "cpp/bindings/lib/router.cc", | |
38 "cpp/bindings/lib/router.h", | |
39 "cpp/bindings/lib/scratch_buffer.cc", | |
40 "cpp/bindings/lib/scratch_buffer.h", | |
41 "cpp/bindings/lib/shared_data.h", | |
42 "cpp/bindings/lib/shared_ptr.h", | |
43 "cpp/bindings/lib/sync_dispatcher.cc", | |
44 "js/bindings/constants.cc", | |
viettrungluu
2014/04/28 21:25:50
These files don't exist.
yzshen1
2014/04/28 22:57:20
Sorry I probably haven't understood:
It seems they
viettrungluu
2014/04/28 23:32:47
Oops, sorry, I misread the filenames.
They don't
yzshen1
2014/04/29 03:58:13
Done.
| |
45 "js/bindings/constants.h", | |
46 ] | |
47 } | |
OLD | NEW |