blob: 18760008dccd833d46b6de438c042cd5af27f70a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Use of this source code is governed by a BSD-style license that can be
# Copyright 2017 The Chromium Authors. All rights reserved.
# found in the LICENSE file.
if (is_win) {
executable("ax_dump_events") {
testonly = true
sources = [
"ax_dump_events.cc",
"ax_event_server.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",
]
deps = [
"//base",
"//base/test:test_support",
"//content/test:test_support",
]
if (is_win) {
libs = [ "oleacc.lib" ]
}
}
}
|