Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: base/trace_event/etw_manifest/etw_manifest.gyp

Issue 1111483002: Fix dependency issues for etw_manifest.gyp. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add hard_dependency and change type to none. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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': 'none',
10 'toolsets': ['host', 'target'], 10 'toolsets': ['host', 'target'],
11 'hard_dependency': 1,
11 'conditions': [ 12 'conditions': [
12 ['OS=="win"', { 13 ['OS=="win"', {
13 'sources': [ 14 'sources': [
14 'chrome_events_win.man', 15 'chrome_events_win.man',
15 ], 16 ],
16 'variables': { 17 'variables': {
17 'man_output_dir': '<(SHARED_INTERMEDIATE_DIR)/base/trace_event/etw_m anifest', 18 'man_output_dir': '<(SHARED_INTERMEDIATE_DIR)/base/trace_event/etw_m anifest',
18 }, 19 },
19 'rules': [{ 20 'rules': [{
20 # Rule to run the message compiler. 21 # Rule to run the message compiler.
(...skipping 10 matching lines...) Expand all
31 '-um', 32 '-um',
32 '<(RULE_INPUT_PATH)', 33 '<(RULE_INPUT_PATH)',
33 ], 34 ],
34 'message': 'Running message compiler on <(RULE_INPUT_PATH)', 35 'message': 'Running message compiler on <(RULE_INPUT_PATH)',
35 }], 36 }],
36 }], 37 }],
37 ], 38 ],
38 } 39 }
39 ] 40 ]
40 } 41 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698