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

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: Fix some more gyp issues Created 4 years, 7 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
« no previous file with comments | « ui/latency_info/latency_info.dot ('k') | ui/latency_info/latency_info_export.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
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
« no previous file with comments | « ui/latency_info/latency_info.dot ('k') | ui/latency_info/latency_info_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698