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 config("config") { |
| 6 include_dirs = [ ".." ] |
| 7 } |
| 8 |
| 9 # GYP version: mojo/mojo_public_tests.gypi:mojo_test_support |
| 10 shared_library("test_support") { |
| 11 output_name = "mojo_test_support" |
| 12 |
| 13 configs += [ ":config" ] |
| 14 direct_dependent_configs = [ ":config" ] |
| 15 |
| 16 defines = [ "MOJO_TEST_SUPPORT_IMPLEMENTATION" ] |
| 17 |
| 18 sources = [ |
| 19 "test_support.h", |
| 20 "test_support_export.h", |
| 21 "../../tests/test_support_private.cc", |
| 22 "../../tests/test_support_private.h", |
| 23 ] |
| 24 |
| 25 if (is_mac) { |
| 26 # TODO(GYP) |
| 27 # # Make it a run-path dependent library. |
| 28 # 'DYLIB_INSTALL_NAME_BASE': '@loader_path', |
| 29 } |
| 30 } |
OLD | NEW |