Store Proxy Servers as proxy servers and not GURLs.
[chromium-blink-merge.git] / components / tracing.gyp
blob4f8a796c7ad6d258ca4a1852c07ac9a5cf39b68c
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
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
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.
11   'variables': {
12     'chromium_code': 1,
13   },
14   'targets' : [
15     {
16       'target_name': 'tracing',
17       'type': 'static_library',
18       'dependencies': [
19         '../base/base.gyp:base',
20         '../ipc/ipc.gyp:ipc',
21       ],
22       'include_dirs': [
23         '..',
24       ],
25       'sources': [
26         'tracing/child_trace_message_filter.cc',
27         'tracing/child_trace_message_filter.h',
28         'tracing/tracing_messages.cc',
29         'tracing/tracing_messages.h',
30       ],
31     },
32   ],