| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 6 'variables': { |
| 7 # TODO(dmaclach): can we pick this up some other way? Right now it's | 7 # TODO(dmaclach): can we pick this up some other way? Right now it's |
| 8 # duplicated from chrome.gyp | 8 # duplicated from chrome.gyp |
| 9 'chromium_code': 1, | 9 'chromium_code': 1, |
| 10 # Use a consistent MIME-type independent of branding. | 10 # Use a consistent MIME-type independent of branding. |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 '<@(remoting_it2me_files)', | 224 '<@(remoting_it2me_files)', |
| 225 ], | 225 ], |
| 226 }, | 226 }, |
| 227 ], | 227 ], |
| 228 }, # end of target 'webapp_it2me' | 228 }, # end of target 'webapp_it2me' |
| 229 { | 229 { |
| 230 'target_name': 'remoting_base', | 230 'target_name': 'remoting_base', |
| 231 'type': 'static_library', | 231 'type': 'static_library', |
| 232 'dependencies': [ | 232 'dependencies': [ |
| 233 '../base/base.gyp:base', | 233 '../base/base.gyp:base', |
| 234 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 234 '../ui/ui.gyp:ui_gfx', | 235 '../ui/ui.gyp:ui_gfx', |
| 235 '../net/net.gyp:net', | 236 '../net/net.gyp:net', |
| 236 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 237 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 237 '../third_party/libvpx/libvpx.gyp:libvpx_include', | 238 '../third_party/libvpx/libvpx.gyp:libvpx_include', |
| 238 '../third_party/zlib/zlib.gyp:zlib', | 239 '../third_party/zlib/zlib.gyp:zlib', |
| 239 '../media/media.gyp:yuv_convert', | 240 '../media/media.gyp:yuv_convert', |
| 240 'remoting_jingle_glue', | 241 'remoting_jingle_glue', |
| 241 'proto/chromotocol.gyp:chromotocol_proto_lib', | 242 'proto/chromotocol.gyp:chromotocol_proto_lib', |
| 242 'proto/trace.gyp:trace_proto_lib', | 243 'proto/trace.gyp:trace_proto_lib', |
| 243 # TODO(hclam): Enable VP8 in the build. | 244 # TODO(hclam): Enable VP8 in the build. |
| 244 #'third_party/on2/on2.gyp:vp8', | 245 #'third_party/on2/on2.gyp:vp8', |
| 245 ], | 246 ], |
| 246 'export_dependent_settings': [ | 247 'export_dependent_settings': [ |
| 247 '../base/base.gyp:base', | 248 '../base/base.gyp:base', |
| 249 '../net/net.gyp:net', |
| 248 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 250 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 249 'proto/chromotocol.gyp:chromotocol_proto_lib', | 251 'proto/chromotocol.gyp:chromotocol_proto_lib', |
| 250 ], | 252 ], |
| 251 # This target needs a hard dependency because dependent targets | 253 # This target needs a hard dependency because dependent targets |
| 252 # depend on chromotocol_proto_lib for headers. | 254 # depend on chromotocol_proto_lib for headers. |
| 253 'hard_dependency': 1, | 255 'hard_dependency': 1, |
| 254 'sources': [ | 256 'sources': [ |
| 255 'base/auth_token_util.cc', | 257 'base/auth_token_util.cc', |
| 256 'base/auth_token_util.h', | 258 'base/auth_token_util.h', |
| 257 'base/capture_data.cc', | 259 'base/capture_data.cc', |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 ], # end of 'conditions' | 763 ], # end of 'conditions' |
| 762 }, # end of target 'remoting_unittests' | 764 }, # end of target 'remoting_unittests' |
| 763 ], # end of targets | 765 ], # end of targets |
| 764 } | 766 } |
| 765 | 767 |
| 766 # Local Variables: | 768 # Local Variables: |
| 767 # tab-width:2 | 769 # tab-width:2 |
| 768 # indent-tabs-mode:nil | 770 # indent-tabs-mode:nil |
| 769 # End: | 771 # End: |
| 770 # vim: set expandtab tabstop=2 shiftwidth=2: | 772 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |