OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2015 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 component("native_viewport") { | |
6 output_name = "mojo_native_viewport_lib" | |
abarth-chromium
2015/06/09 00:30:21
You can skip this output_name. The GN system will
iansf
2015/06/09 01:52:04
Done.
| |
7 | |
8 sources = [ | |
9 "surface_configuration_type_converters.cc", | |
10 "surface_configuration_type_converters.h", | |
11 ] | |
12 | |
13 deps = [ | |
14 "//base", | |
15 "//ui/gl", | |
16 "//mojo/environment:chromium", | |
17 "//mojo/public/c/system", | |
18 "//mojo/services/native_viewport/public/interfaces", | |
19 ] | |
20 } | |
OLD | NEW |