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

Side by Side Diff: components/tracing.gyp

Issue 62833009: Add chromium_code to tracing.gyp to build with warnings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # This file is intentionally a gyp file rather than a gypi for dependencies 6 # This file is intentionally a gyp file rather than a gypi for dependencies
7 # reasons. The other gypi files include content.gyp and content_common depends 7 # reasons. The other gypi files include content.gyp and content_common depends
8 # on this, thus if you try to rename this to gypi and include it in 8 # on this, thus if you try to rename this to gypi and include it in
9 # components.gyp, you will get a circular dependency error. 9 # components.gyp, you will get a circular dependency error.
10 { 10 {
11 'variables': {
12 'chromium_code': 1,
13 },
11 'targets' : [ 14 'targets' : [
12 { 15 {
13 'target_name': 'tracing', 16 'target_name': 'tracing',
14 'type': 'static_library', 17 'type': 'static_library',
15 'defines!': ['CONTENT_IMPLEMENTATION'],
16 'dependencies': [ 18 'dependencies': [
17 '../base/base.gyp:base', 19 '../base/base.gyp:base',
18 '../ipc/ipc.gyp:ipc', 20 '../ipc/ipc.gyp:ipc',
19 ], 21 ],
20 'include_dirs': [ 22 'include_dirs': [
21 '..', 23 '..',
22 ], 24 ],
23 'sources': [ 25 'sources': [
24 'tracing/child_trace_message_filter.cc', 26 'tracing/child_trace_message_filter.cc',
25 'tracing/child_trace_message_filter.h', 27 'tracing/child_trace_message_filter.h',
26 'tracing/tracing_messages.cc', 28 'tracing/tracing_messages.cc',
27 'tracing/tracing_messages.h', 29 'tracing/tracing_messages.h',
28 ], 30 ],
29 }, 31 },
30 ], 32 ],
31 } 33 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698