OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2014 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 # GYP version: mojo/mojo_public_tests.gypi:mojo_test_support | |
6 shared_library("test_support") { | |
7 output_name = "mojo_test_support" | |
8 | |
9 defines = [ "MOJO_TEST_SUPPORT_IMPLEMENTATION" ] | |
10 | |
11 sources = [ | |
12 "test_support.h", | |
13 "test_support_export.h", | |
14 "../../tests/test_support_private.cc", | |
viettrungluu
2014/08/20 19:52:51
Could you add a "TODO(vtl): crbug.com/386799" comm
| |
15 "../../tests/test_support_private.h", | |
16 ] | |
17 | |
18 if (is_mac) { | |
19 # TODO(GYP) | |
20 # # Make it a run-path dependent library. | |
21 # 'DYLIB_INSTALL_NAME_BASE': '@loader_path', | |
22 } | |
23 } | |
OLD | NEW |