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 import("//build/win/message_compiler.gni") | 5 import("//build/win/message_compiler.gni") |
6 | 6 |
7 assert(is_win, "This only runs on Windows.") | 7 assert(is_win, "This only runs on Windows.") |
8 | 8 |
9 message_compiler("chrome_events_win") { | 9 message_compiler("chrome_events_win") { |
10 visibility = [ | 10 visibility = [ |
11 "//base/trace_event/*", | 11 "//base/trace_event/*", |
12 "//chrome:main_dll", | 12 "//chrome:main_dll", |
13 ] | 13 ] |
14 | 14 |
15 sources = [ | 15 sources = [ |
16 "chrome_events_win.man", | 16 "chrome_events_win.man", |
17 ] | 17 ] |
18 | 18 |
19 user_mode_logging = true | 19 user_mode_logging = true |
| 20 |
| 21 # TOOD(brucedawson) bug 569989: Enable ETW manifest and compile and link it |
| 22 # into the proper places. Enabling as-is may add the resources to too many |
| 23 # targets. See the bug for more information. |
| 24 compile_generated_code = false |
20 } | 25 } |
OLD | NEW |