| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 static_library("plugin") { | 5 static_library("plugin") { |
| 6 sources = [ | 6 sources = [ |
| 7 "chromoting_instance.cc", | 7 "chromoting_instance.cc", |
| 8 "chromoting_instance.h", | 8 "chromoting_instance.h", |
| 9 "delegating_signal_strategy.cc", | 9 "delegating_signal_strategy.cc", |
| 10 "delegating_signal_strategy.h", | 10 "delegating_signal_strategy.h", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 defines = [ "HAVE_STDINT_H" ] # Required by on2_integer.h. | 46 defines = [ "HAVE_STDINT_H" ] # Required by on2_integer.h. |
| 47 | 47 |
| 48 deps = [ | 48 deps = [ |
| 49 "//net", | 49 "//net", |
| 50 "//ppapi:ppapi_cpp_objects", | 50 "//ppapi:ppapi_cpp_objects", |
| 51 "//ppapi:ppapi_internal_module", | 51 "//ppapi:ppapi_internal_module", |
| 52 "//remoting/base", | 52 "//remoting/base", |
| 53 "//remoting/client", | 53 "//remoting/client", |
| 54 "//remoting/protocol", | 54 "//remoting/protocol", |
| 55 #"//third_party/webrtc/modules/desktop_capture", TODO(GYP) | 55 "//third_party/webrtc/modules/desktop_capture", |
| 56 "//ui/events:dom4_keycode_converter", | 56 "//ui/events:dom4_keycode_converter", |
| 57 ] | 57 ] |
| 58 } | 58 } |
| OLD | NEW |