OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "c++": { | 6 "c++": { |
7 "gpu.mojom.Capabilities": { | 7 "gpu.mojom.Capabilities": { |
8 "typename": "gpu::Capabilities", | 8 "typename": "gpu::Capabilities", |
9 "public_headers": [ | |
10 "gpu/command_buffer/common/capabilities.h" | |
11 ], | |
9 "headers": [ | 12 "headers": [ |
yzshen1
2016/03/22 17:43:32
Could we consider more specific names? I feel diff
Sam McNally
2016/03/22 19:22:03
Ken and I discussed this and ended up with public_
| |
10 "gpu/command_buffer/common/capabilities.h", | |
11 "gpu/ipc/common/gpu_command_buffer_traits.h" | 13 "gpu/ipc/common/gpu_command_buffer_traits.h" |
12 ] | 14 ] |
13 }, | 15 }, |
14 "gpu.mojom.CommandBufferState": { | 16 "gpu.mojom.CommandBufferState": { |
15 "typename": "gpu::CommandBuffer::State", | 17 "typename": "gpu::CommandBuffer::State", |
18 "public_headers": [ | |
19 "gpu/command_buffer/common/command_buffer.h" | |
20 ], | |
16 "headers": [ | 21 "headers": [ |
17 "gpu/command_buffer/common/command_buffer.h", | |
18 "gpu/ipc/common/gpu_command_buffer_traits.h" | 22 "gpu/ipc/common/gpu_command_buffer_traits.h" |
19 ] | 23 ] |
20 }, | 24 }, |
21 "gpu.mojom.Mailbox": { | 25 "gpu.mojom.Mailbox": { |
22 "typename": "gpu::Mailbox", | 26 "typename": "gpu::Mailbox", |
27 "public_headers": [ | |
28 "gpu/command_buffer/common/mailbox.h" | |
29 ], | |
23 "headers": [ | 30 "headers": [ |
24 "gpu/command_buffer/common/mailbox.h", | |
25 "gpu/ipc/common/gpu_command_buffer_traits.h" | 31 "gpu/ipc/common/gpu_command_buffer_traits.h" |
26 ] | 32 ] |
27 }, | 33 }, |
28 "gpu.mojom.MailboxHolder": { | 34 "gpu.mojom.MailboxHolder": { |
29 "typename": "gpu::MailboxHolder", | 35 "typename": "gpu::MailboxHolder", |
36 "public_headers": [ | |
37 "gpu/command_buffer/common/mailbox_holder.h" | |
38 ], | |
30 "headers": [ | 39 "headers": [ |
31 "gpu/command_buffer/common/mailbox_holder.h", | |
32 "gpu/ipc/common/gpu_command_buffer_traits.h" | 40 "gpu/ipc/common/gpu_command_buffer_traits.h" |
33 ] | 41 ] |
34 }, | 42 }, |
35 "gpu.mojom.SyncToken": { | 43 "gpu.mojom.SyncToken": { |
36 "typename": "gpu::SyncToken", | 44 "typename": "gpu::SyncToken", |
45 "public_headers": [ | |
46 "gpu/command_buffer/common/sync_token.h" | |
47 ], | |
37 "headers": [ | 48 "headers": [ |
38 "gpu/command_buffer/common/sync_token.h", | |
39 "gpu/ipc/common/gpu_command_buffer_traits.h" | 49 "gpu/ipc/common/gpu_command_buffer_traits.h" |
40 ] | 50 ] |
41 }, | 51 }, |
42 "gpu.mojom.ValueState": { | 52 "gpu.mojom.ValueState": { |
43 "typename": "gpu::ValueState", | 53 "typename": "gpu::ValueState", |
54 "public_headers": [ | |
55 "gpu/command_buffer/common/value_state.h" | |
56 ], | |
44 "headers": [ | 57 "headers": [ |
45 "gpu/command_buffer/common/value_state.h", | |
46 "gpu/ipc/common/gpu_command_buffer_traits.h" | 58 "gpu/ipc/common/gpu_command_buffer_traits.h" |
47 ] | 59 ] |
48 } | 60 } |
49 } | 61 } |
50 } | 62 } |
OLD | NEW |