| OLD | NEW |
| 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 |
| 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. |
| 6 { | 10 { |
| 7 'targets' : [ | 11 'targets' : [ |
| 8 { | 12 { |
| 9 'target_name': 'tracing', | 13 'target_name': 'tracing', |
| 10 'type': 'static_library', | 14 'type': 'static_library', |
| 11 'defines!': ['CONTENT_IMPLEMENTATION'], | 15 'defines!': ['CONTENT_IMPLEMENTATION'], |
| 12 'dependencies': [ | 16 'dependencies': [ |
| 13 '../base/base.gyp:base', | 17 '../base/base.gyp:base', |
| 14 '../ipc/ipc.gyp:ipc', | 18 '../ipc/ipc.gyp:ipc', |
| 15 ], | 19 ], |
| 16 'include_dirs': [ | 20 'include_dirs': [ |
| 17 '..', | 21 '..', |
| 18 ], | 22 ], |
| 19 'sources': [ | 23 'sources': [ |
| 20 'tracing/child_trace_message_filter.cc', | 24 'tracing/child_trace_message_filter.cc', |
| 21 'tracing/child_trace_message_filter.h', | 25 'tracing/child_trace_message_filter.h', |
| 22 'tracing/tracing_messages.cc', | 26 'tracing/tracing_messages.cc', |
| 23 'tracing/tracing_messages.h', | 27 'tracing/tracing_messages.h', |
| 24 ], | 28 ], |
| 25 }, | 29 }, |
| 26 ], | 30 ], |
| 27 } | 31 } |
| OLD | NEW |