OLD | NEW |
---|---|
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/public/tools/bindings/mojom.gni") | 5 config("public_config") { |
sdefresne
2016/02/24 09:46:25
rename this to fishhook_config
baxley
2016/02/24 15:29:23
Done.
| |
6 include_dirs = [ "src" ] | |
sdefresne
2016/02/24 09:46:25
visibility = [ ":fishhook" ]
baxley
2016/02/24 15:29:23
Done.
| |
7 } | |
6 | 8 |
7 mojom("interfaces") { | 9 source_set("fishhook") { |
10 testonly = true | |
11 | |
sdefresne
2016/02/24 09:46:25
no blank line here
baxley
2016/02/24 15:29:23
Done.
| |
8 sources = [ | 12 sources = [ |
9 "leveldb.mojom", | 13 "src/fishhook.c", |
14 "src/fishhook.h", | |
10 ] | 15 ] |
11 | 16 |
12 deps = [ | 17 public_configs = [ ":public_config" ] |
sdefresne
2016/02/24 09:46:25
public_configs = [ ":fishhook_config" ]
baxley
2016/02/24 15:29:23
Done.
| |
13 "//components/filesystem/public/interfaces", | |
14 ] | |
15 } | 18 } |
sdefresne
2016/02/24 09:46:25
configs += [ ":fishhook_config" ]
| |
OLD | NEW |