| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |