Home | History | Annotate | Download | only in spy
      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 import("//mojo/public/tools/bindings/mojom.gni")
      6 
      7 source_set("spy") {
      8   deps = [
      9     ":spy_bindings",
     10     "//base",
     11     "//base:base_static",
     12     "//net:http_server",
     13     "//url",
     14     "//mojo/application_manager",
     15   ]
     16 
     17   sources = [
     18     "common.h",
     19     "spy.cc",
     20     "spy.h",
     21     "spy_server_impl.h",
     22     "spy_server_impl.cc",
     23     "websocket_server.cc",
     24     "websocket_server.h",
     25   ]
     26 }
     27 
     28 mojom("spy_bindings") {
     29   sources = [
     30     "public/spy.mojom",
     31   ]
     32 }
     33