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 | 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 { |
(...skipping 14 matching lines...) Expand all Loading... | |
25 'defines': [ | 25 'defines': [ |
26 'TRACING_IMPLEMENTATION=1', | 26 'TRACING_IMPLEMENTATION=1', |
27 ], | 27 ], |
28 'sources': [ | 28 'sources': [ |
29 'tracing/child_memory_dump_manager_delegate_impl.cc', | 29 'tracing/child_memory_dump_manager_delegate_impl.cc', |
30 'tracing/child_memory_dump_manager_delegate_impl.h', | 30 'tracing/child_memory_dump_manager_delegate_impl.h', |
31 'tracing/child_trace_message_filter.cc', | 31 'tracing/child_trace_message_filter.cc', |
32 'tracing/child_trace_message_filter.h', | 32 'tracing/child_trace_message_filter.h', |
33 'tracing/graphics_memory_dump_provider_android.cc', | 33 'tracing/graphics_memory_dump_provider_android.cc', |
34 'tracing/graphics_memory_dump_provider_android.h', | 34 'tracing/graphics_memory_dump_provider_android.h', |
35 'tracing/process_metrics_memory_dump_provider.cc', | |
36 'tracing/process_metrics_memory_dump_provider.h', | |
37 'tracing/process_metrics_memory_dump_provider_linux.cc', | |
35 'tracing/trace_config_file.cc', | 38 'tracing/trace_config_file.cc', |
36 'tracing/trace_config_file.h', | 39 'tracing/trace_config_file.h', |
37 'tracing/trace_to_console.cc', | 40 'tracing/trace_to_console.cc', |
38 'tracing/trace_to_console.h', | 41 'tracing/trace_to_console.h', |
39 'tracing/tracing_export.h', | 42 'tracing/tracing_export.h', |
40 'tracing/tracing_messages.cc', | 43 'tracing/tracing_messages.cc', |
41 'tracing/tracing_messages.h', | 44 'tracing/tracing_messages.h', |
42 'tracing/tracing_switches.cc', | 45 'tracing/tracing_switches.cc', |
43 'tracing/tracing_switches.h', | 46 'tracing/tracing_switches.h', |
44 ], | 47 ], |
48 'target_conditions': [ | |
49 ['OS=="android"', { | |
50 'sources/': [ | |
51 ['include', '^tracing/process_metrics_memory_dump_provider_linux\\.' ], | |
Primiano Tucci (use gerrit)
2016/01/05 11:55:17
I think the pattern in this case (to bypass the so
ssid
2016/01/06 20:26:33
removed.
| |
52 ], | |
53 }], | |
54 ], | |
45 }, | 55 }, |
46 ], | 56 ], |
47 } | 57 } |
OLD | NEW |