OLD | NEW |
---|---|
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. |
tfarina
2014/06/04 15:59:15
no (c) here.
kjellander_chromium
2014/06/04 16:44:33
Ah, I wasn't aware the (c) was deprecated. Fixed.
| |
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 | |
5 static_library("gmock_mutant") { | |
tfarina
2014/06/04 15:59:15
I think we prefer source_set here instead.
kjellander_chromium
2014/06/04 16:44:33
Oh, of course!
| |
6 sources = [ | |
7 "gmock_mutant.h", # gMock helpers | |
8 ] | |
9 deps = [ "//base" ] | |
tfarina
2014/06/04 15:59:15
nit: I always put a blank line between sections fo
kjellander_chromium
2014/06/04 16:44:33
Done.
| |
10 } | |
OLD | NEW |