| OLD | NEW |
| (Empty) |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 'target_name': 'tracing_service_bindings_mojom', | |
| 9 'type': 'none', | |
| 10 'variables': { | |
| 11 'mojom_files': [ | |
| 12 'services/tracing/public/interfaces/tracing.mojom', | |
| 13 ], | |
| 14 'mojom_include_path': '<(DEPTH)/mojo/services', | |
| 15 }, | |
| 16 'includes': [ | |
| 17 'mojom_bindings_generator_explicit.gypi', | |
| 18 ], | |
| 19 }, | |
| 20 { | |
| 21 # GN version: //mojo/services/tracing/public/interfaces | |
| 22 'target_name': 'tracing_service_bindings_lib', | |
| 23 'type': 'static_library', | |
| 24 'dependencies': [ | |
| 25 'tracing_service_bindings_mojom', | |
| 26 ], | |
| 27 }, | |
| 28 ], | |
| 29 } | |
| OLD | NEW |