OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
billorr
2017/03/18 00:10:44
2017
also, double check for Copyright in other fi
billorr
2017/03/21 20:26:43
Done.
| |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 loadable_module("openvr") { | |
6 output_name = "openvr_api" | |
7 | |
8 configs -= [ "//build/config/win:unicode" ] | |
9 | |
10 defines = [ "VR_API_PUBLIC" ] | |
11 | |
12 sources = [ | |
13 "src/src/jsoncpp.cpp", | |
14 "src/src/openvr_api_public.cpp", | |
15 "src/src/vrcommon/dirtools_public.cpp", | |
16 "src/src/vrcommon/envvartools_public.cpp", | |
17 "src/src/vrcommon/hmderrors_public.cpp", | |
18 "src/src/vrcommon/pathtools_public.cpp", | |
19 "src/src/vrcommon/sharedlibtools_public.cpp", | |
20 "src/src/vrcommon/strtools_public.cpp", | |
21 "src/src/vrcommon/vrpathregistry_public.cpp", | |
22 ] | |
23 | |
24 include_dirs = [ | |
25 "src/headers", | |
26 "src/src", | |
27 "src/src/json", | |
28 "src/src/vrcommon", | |
29 ] | |
30 } | |
OLD | NEW |