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

Side by Side Diff: ui/latency_info/latency_info.gyp

Issue 1871233002: Move LatencyInfo to ui/latency_info (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify ui/events OWNERS Created 4 years, 8 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
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698