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

Side by Side Diff: components/components_tracing.gyp

Issue 12599004: components: Fix components_tracing.gyp to follow the same pattern of the other gyp files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert some changes Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 #
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 {
7 'targets' : [
8 {
9 'target_name': 'tracing',
10 'type': 'static_library',
11 'defines!': ['CONTENT_IMPLEMENTATION'],
12 'dependencies': [
13 '../base/base.gyp:base',
14 '../ipc/ipc.gyp:ipc',
15 ],
16 'include_dirs': [
17 '..',
18 ],
19 'sources': [
20 'tracing/child_trace_message_filter.cc',
21 'tracing/child_trace_message_filter.h',
22 'tracing/tracing_messages.cc',
23 'tracing/tracing_messages.h',
24 ],
25 },
26 ],
27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698