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

Unified Diff: ui/events/latency_info_nacl.gyp

Issue 252663002: Track plugin input event latency (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: add more comments Created 6 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 side-by-side diff with in-line comments
Download patch
« ui/events/latency_info.h ('K') | « ui/events/latency_info.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/latency_info_nacl.gyp
diff --git a/ipc/ipc_nacl.gyp b/ui/events/latency_info_nacl.gyp
similarity index 60%
copy from ipc/ipc_nacl.gyp
copy to ui/events/latency_info_nacl.gyp
index 3119f46cae1bf1a038ca94389694697c2d9cfc79..eefa1340d3cb001ada329342263a32218b7cded5 100644
--- a/ipc/ipc_nacl.gyp
+++ b/ui/events/latency_info_nacl.gyp
@@ -1,4 +1,5 @@
# Copyright 2014 The Chromium Authors. All rights reserved.
+#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -7,26 +8,34 @@
'chromium_code': 1,
},
'includes': [
- '../build/common_untrusted.gypi',
- 'ipc.gypi',
+ '../../build/common_untrusted.gypi',
],
'conditions': [
['disable_nacl==0 and disable_nacl_untrusted==0', {
'targets': [
{
- 'target_name': 'ipc_nacl',
+ 'target_name': 'latency_info_nacl',
'type': 'none',
+ 'defines': [
+ 'EVENTS_BASE_IMPLEMENTATION',
+ ],
+ 'dependencies': [
+ '<(DEPTH)/base/base_nacl.gyp:base_nacl',
+ '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
'variables': {
- 'ipc_target': 1,
'nacl_untrusted_build': 1,
- 'nlib_target': 'libipc_nacl.a',
+ 'nlib_target': 'liblatency_info_nacl.a',
'build_glibc': 0,
'build_newlib': 0,
'build_irt': 1,
},
- 'dependencies': [
- '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
- '../base/base_nacl.gyp:base_nacl',
+ 'sources': [
+ 'latency_info.h',
+ 'latency_info.cc',
],
},
],
« ui/events/latency_info.h ('K') | « ui/events/latency_info.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698