# Copyright 2017 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
executable("ax_dump_events") {
testonly = true
sources = [
"ax_dump_events.cc",
"ax_event_server.cc",
"ax_utils.cc",
]
deps = [
"//base",
"//base/test:test_support",
"//content/test:test_support",
]
if (is_win) {
libs = [ "oleacc.lib" ]
}
}
executable("ax_dump_tree") {
testonly = true
sources = [
"ax_dump_tree.cc",
"ax_tree_server.cc",
"ax_utils.cc",
]
deps = [
"//base",
"//base/test:test_support",
"//content/test:test_support",
]
if (is_win) {
libs = [ "oleacc.lib" ]
}
}