Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2014 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 # GYP version: mojo/mojo_services.gypi:mojo_network_utility | |
| 6 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.
| |
| 7 deps = [ | |
| 8 "//base", | |
| 9 "//mojo/application", | |
| 10 "//mojo/common", | |
| 11 "//mojo/environment:chromium", | |
| 12 "//mojo/public/c/system:for_component", | |
| 13 ] | |
| 14 | |
| 15 sources = [ | |
| 16 "web_socket_read_queue.cc", | |
| 17 "web_socket_read_queue.h", | |
| 18 "web_socket_write_queue.cc", | |
| 19 "web_socket_write_queue.h", | |
| 20 ] | |
| 21 } | |
| OLD | NEW |