| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'tracing_interfaces', | 8 'target_name': 'tracing_interfaces', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'variables': { | 10 'variables': { |
| 11 'mojom_files': [ | 11 'mojom_files': [ |
| 12 'public/interfaces/tracing.mojom', | 12 'public/interfaces/tracing.mojom', |
| 13 ], | 13 ], |
| 14 'mojom_include_path': '<(DEPTH)/mojo/services', | 14 'mojom_include_path': '<(DEPTH)/mojo/services', |
| 15 'use_new_wrapper_types': 'false', |
| 15 }, | 16 }, |
| 16 'includes': [ | 17 'includes': [ |
| 17 '../../mojo/mojom_bindings_generator_explicit.gypi', | 18 '../../mojo/mojom_bindings_generator_explicit.gypi', |
| 18 ], | 19 ], |
| 19 }, | 20 }, |
| 20 { | 21 { |
| 21 # Technically, these should be in the mojo_services.gyp, but this causes | 22 # Technically, these should be in the mojo_services.gyp, but this causes |
| 22 # a cycle since the ios generator can't have gyp files refer to each | 23 # a cycle since the ios generator can't have gyp files refer to each |
| 23 # other, even if the targets don't form a cycle. | 24 # other, even if the targets don't form a cycle. |
| 24 # | 25 # |
| (...skipping 27 matching lines...) Expand all Loading... |
| 52 'public/cpp/switches.cc', | 53 'public/cpp/switches.cc', |
| 53 'public/cpp/switches.h', | 54 'public/cpp/switches.h', |
| 54 'public/cpp/tracing_impl.cc', | 55 'public/cpp/tracing_impl.cc', |
| 55 'public/cpp/tracing_impl.h', | 56 'public/cpp/tracing_impl.h', |
| 56 'public/cpp/trace_provider_impl.cc', | 57 'public/cpp/trace_provider_impl.cc', |
| 57 'public/cpp/trace_provider_impl.h', | 58 'public/cpp/trace_provider_impl.h', |
| 58 ], | 59 ], |
| 59 }, | 60 }, |
| 60 ], | 61 ], |
| 61 } | 62 } |
| OLD | NEW |