OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | |
sky
2016/04/12 17:51:58
2016
Fady Samuel
2016/04/12 19:18:04
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 { | |
6 'variables': { | |
7 'chromium_code': 1, | |
8 }, | |
9 'targets': [ | |
10 { | |
11 # GN version: //ui/latency_info:latency_info | |
12 'target_name': 'latency_info', | |
13 'type': '<(component)', | |
14 'dependencies': [ | |
15 '<(DEPTH)/base/base.gyp:base', | |
16 ], | |
17 'defines': [ | |
18 'LATENCY_INFO_IMPLEMENTATION', | |
19 ], | |
20 'sources': [ | |
21 'latency_info.cc', | |
22 'latency_info.h', | |
23 'latency_info_export.h', | |
24 ], | |
25 }, | |
26 { | |
27 # GN version: //ui/latency_info/ipc:latency_info_ipc | |
28 'target_name': 'latency_info_ipc', | |
29 'type': '<(component)', | |
30 'dependencies': [ | |
31 '<(DEPTH)/base/base.gyp:base', | |
32 '<(DEPTH)/ipc/ipc.gyp:ipc', | |
33 'latency_info', | |
34 ], | |
35 'defines': [ | |
36 'LATENCY_INFO_IPC_IMPLEMENTATION', | |
37 ], | |
38 'sources': [ | |
39 'ipc/latency_info_ipc_export.h', | |
40 'ipc/latency_info_param_traits.cc', | |
41 'ipc/latency_info_param_traits.h', | |
42 'ipc/latency_info_param_traits_macros.h', | |
43 ], | |
44 }, | |
45 ], | |
46 } | |
OLD | NEW |