OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 { | 5 { |
6 'target_defaults': { | 6 'target_defaults': { |
7 'defines': [ | 7 'defines': [ |
8 ], | 8 ], |
9 'include_dirs': [ | 9 'include_dirs': [ |
10 '..', # Root of Chrome checkout | 10 '..', # Root of Chrome checkout |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 'host/encoder_verbatim.cc', | 177 'host/encoder_verbatim.cc', |
178 'host/encoder_verbatim.h', | 178 'host/encoder_verbatim.h', |
179 # TODO(hclam): Enable VP8 in the build. | 179 # TODO(hclam): Enable VP8 in the build. |
180 #'host/encoder_vp8.cc', | 180 #'host/encoder_vp8.cc', |
181 #'host/encoder_vp8.h', | 181 #'host/encoder_vp8.h', |
182 'host/event_executor.h', | 182 'host/event_executor.h', |
183 'host/session_manager.cc', | 183 'host/session_manager.cc', |
184 'host/session_manager.h', | 184 'host/session_manager.h', |
185 'host/heartbeat_sender.cc', | 185 'host/heartbeat_sender.cc', |
186 'host/heartbeat_sender.h', | 186 'host/heartbeat_sender.h', |
| 187 'host/host_config.h', |
187 ], | 188 ], |
188 'conditions': [ | 189 'conditions': [ |
189 ['OS=="win"', { | 190 ['OS=="win"', { |
190 'sources': [ | 191 'sources': [ |
191 'host/capturer_gdi.cc', | 192 'host/capturer_gdi.cc', |
192 'host/capturer_gdi.h', | 193 'host/capturer_gdi.h', |
193 'host/event_executor_win.cc', | 194 'host/event_executor_win.cc', |
194 'host/event_executor_win.h', | 195 'host/event_executor_win.h', |
195 ], | 196 ], |
196 }], | 197 }], |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 ], # end of 'conditions' | 382 ], # end of 'conditions' |
382 }, # end of target 'chromoting_unittests' | 383 }, # end of target 'chromoting_unittests' |
383 ], # end of targets | 384 ], # end of targets |
384 } | 385 } |
385 | 386 |
386 # Local Variables: | 387 # Local Variables: |
387 # tab-width:2 | 388 # tab-width:2 |
388 # indent-tabs-mode:nil | 389 # indent-tabs-mode:nil |
389 # End: | 390 # End: |
390 # vim: set expandtab tabstop=2 shiftwidth=2: | 391 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |