Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1117)

Side by Side Diff: mojo/public/c/test_support/BUILD.gn

Issue 494523004: GN: Build rules and fixes for (almost) all mojo unittest targets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698