OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 'targets': [ | 5 'targets': [ |
6 { | 6 { |
7 # GN version: //base/trace_event/etw_manifest/BUILD.gn | 7 # GN version: //base/trace_event/etw_manifest/BUILD.gn |
8 'target_name': 'etw_manifest', | 8 'target_name': 'etw_manifest', |
9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'toolsets': ['host', 'target'], |
10 'conditions': [ | 11 'conditions': [ |
11 ['OS=="win"', { | 12 ['OS=="win"', { |
12 'sources': [ | 13 'sources': [ |
13 'chrome_events_win.man', | 14 'chrome_events_win.man', |
14 ], | 15 ], |
15 'variables': { | 16 'variables': { |
16 'man_output_dir': '<(SHARED_INTERMEDIATE_DIR)/base/trace_event/etw_m
anifest', | 17 'man_output_dir': '<(SHARED_INTERMEDIATE_DIR)/base/trace_event/etw_m
anifest', |
17 }, | 18 }, |
18 'rules': [{ | 19 'rules': [{ |
19 # Rule to run the message compiler. | 20 # Rule to run the message compiler. |
(...skipping 10 matching lines...) Expand all Loading... |
30 '-um', | 31 '-um', |
31 '<(RULE_INPUT_PATH)', | 32 '<(RULE_INPUT_PATH)', |
32 ], | 33 ], |
33 'message': 'Running message compiler on <(RULE_INPUT_PATH)', | 34 'message': 'Running message compiler on <(RULE_INPUT_PATH)', |
34 }], | 35 }], |
35 }], | 36 }], |
36 ], | 37 ], |
37 } | 38 } |
38 ] | 39 ] |
39 } | 40 } |
OLD | NEW |