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

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

Issue 2244503002: mojo/public: Include gtest.h as "gtest/gtest.h", instead of via "absolute" path. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | mojo/public/c/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("mojo.gni") 5 import("mojo.gni")
6 6
7 group("public") { 7 group("public") {
8 # Meta-target, don't link into production code. 8 # Meta-target, don't link into production code.
9 testonly = true 9 testonly = true
10 deps = [ 10 deps = [
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 deps += [ "interfaces/network" ] 49 deps += [ "interfaces/network" ]
50 } 50 }
51 } 51 }
52 52
53 static_library("libmojo_sdk") { 53 static_library("libmojo_sdk") {
54 complete_static_lib = true 54 complete_static_lib = true
55 deps = [ 55 deps = [
56 ":sdk", 56 ":sdk",
57 ] 57 ]
58 } 58 }
59
60 # "Forwarding" target, to make it easy to put gtest wherever you want.
61 # TODO(vtl): Maybe this should be parametrized and made into
62 # //build/module_args/mojo.gni (but maybe that's overkill).
63 group("gtest") {
64 testonly = true
65 public_deps = [
66 "//testing/gtest",
67 ]
68 }
OLDNEW
« no previous file with comments | « no previous file | mojo/public/c/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698