Chromium Code Reviews| 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 { | 6 { |
| 7 'targets' : [ | 7 'targets' : [ |
| 8 { | 8 { |
| 9 'target_name': 'tracing', | 9 'target_name': 'tracing', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| 11 'defines!': ['CONTENT_IMPLEMENTATION'], | 11 'defines!': ['CONTENT_IMPLEMENTATION'], |
|
Nico
2013/10/23 19:00:04
This needs
+ 'variables': {
+ 'chromium_code'
| |
| 12 'dependencies': [ | 12 'dependencies': [ |
| 13 '../base/base.gyp:base', | 13 '../base/base.gyp:base', |
| 14 '../ipc/ipc.gyp:ipc', | 14 '../ipc/ipc.gyp:ipc', |
| 15 ], | 15 ], |
| 16 'include_dirs': [ | 16 'include_dirs': [ |
| 17 '..', | 17 '..', |
| 18 ], | 18 ], |
| 19 'sources': [ | 19 'sources': [ |
| 20 'components/tracing/child_trace_message_filter.cc', | 20 'tracing/child_trace_message_filter.cc', |
| 21 'components/tracing/child_trace_message_filter.h', | 21 'tracing/child_trace_message_filter.h', |
| 22 'components/tracing/tracing_messages.cc', | 22 'tracing/tracing_messages.cc', |
| 23 'components/tracing/tracing_messages.h', | 23 'tracing/tracing_messages.h', |
| 24 ], | 24 ], |
| 25 }, | 25 }, |
| 26 ], | 26 ], |
| 27 } | 27 } |
| OLD | NEW |