Chromium Code Reviews| Index: mojo/converters/native_viewport/BUILD.gn |
| diff --git a/mojo/converters/native_viewport/BUILD.gn b/mojo/converters/native_viewport/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e7a388ba08617ab560bade74172eff69cb88d245 |
| --- /dev/null |
| +++ b/mojo/converters/native_viewport/BUILD.gn |
| @@ -0,0 +1,20 @@ |
| +# Copyright 2015 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +component("native_viewport") { |
| + 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.
|
| + |
| + sources = [ |
| + "surface_configuration_type_converters.cc", |
| + "surface_configuration_type_converters.h", |
| + ] |
| + |
| + deps = [ |
| + "//base", |
| + "//ui/gl", |
| + "//mojo/environment:chromium", |
| + "//mojo/public/c/system", |
| + "//mojo/services/native_viewport/public/interfaces", |
| + ] |
| +} |