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 import("//build/win/message_compiler.gni") 6 7 assert(is_win, "This only runs on Windows.") 8 9 message_compiler("chrome_events_win") { 10 visibility = [ 11 "//base/*", 12 "//chrome:main_dll", 13 ] 14 15 sources = [ 16 "chrome_events_win.man", 17 ] 18 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 25 } 26