Chromium Code Reviews| Index: mojo/services/public/cpp/network/BUILD.gn | 
| diff --git a/mojo/services/public/cpp/network/BUILD.gn b/mojo/services/public/cpp/network/BUILD.gn | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..1da21742f544142b3dc40e04f19f10db45b6fc2a | 
| --- /dev/null | 
| +++ b/mojo/services/public/cpp/network/BUILD.gn | 
| @@ -0,0 +1,21 @@ | 
| +# Copyright 2014 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. | 
| + | 
| +# GYP version: mojo/mojo_services.gypi:mojo_network_utility | 
| +component("network") { | 
| 
 
jamesr
2014/09/26 19:31:01
this isn't a component since it doesn't set up exp
 
Matt Perry
2014/09/26 19:32:31
Ah, thanks. I'll make a CL to fix it.
 
 | 
| + deps = [ | 
| + "//base", | 
| + "//mojo/application", | 
| + "//mojo/common", | 
| + "//mojo/environment:chromium", | 
| + "//mojo/public/c/system:for_component", | 
| + ] | 
| + | 
| + sources = [ | 
| + "web_socket_read_queue.cc", | 
| + "web_socket_read_queue.h", | 
| + "web_socket_write_queue.cc", | 
| + "web_socket_write_queue.h", | 
| + ] | 
| +} |