Chromium Code Reviews| 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 import("//build/go/rules.gni") | |
| 6 | |
| 7 group("go") { | |
|
brettw
2014/09/16 22:58:55
I'm not really sure what this is supposed to be.
tburkard
2014/09/17 12:06:45
This group("go") was copied from qsr's python stuf
qsr
2014/09/17 12:30:25
I do not think I have an empty group anywhere. Whi
tburkard
2014/09/17 13:30:46
Fixed per discussion with qsr.
| |
| 8 | |
| 9 } | |
| 10 | |
| 11 go_test_binary("system_test") { | |
| 12 # go_base_module = "mojo" | |
| 13 sources = [ | |
| 14 "tests/system_test.go", | |
|
qsr
2014/09/18 08:30:38
Why don't you depend on all the other .go files?
tburkard
2014/09/18 14:23:42
Yup, that's what I'm not sure, how to express thes
| |
| 15 ] | |
| 16 # deps = [ | |
| 17 # "//mojo/system", | |
| 18 # ] | |
| 19 # datadeps = [ | |
| 20 # "//mojo/public/python:system", | |
| 21 # ] | |
| 22 } | |
| OLD | NEW |