| 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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 ], | 226 ], |
| 227 }, | 227 }, |
| 228 ], | 228 ], |
| 229 }, # end of target 'webapp_me2mom' | 229 }, # end of target 'webapp_me2mom' |
| 230 { | 230 { |
| 231 'target_name': 'remoting_base', | 231 'target_name': 'remoting_base', |
| 232 'type': 'static_library', | 232 'type': 'static_library', |
| 233 'dependencies': [ | 233 'dependencies': [ |
| 234 '../base/base.gyp:base', | 234 '../base/base.gyp:base', |
| 235 '../ui/ui.gyp:ui_gfx', | 235 '../ui/ui.gyp:ui_gfx', |
| 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 ], |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 }, # end of target 'remoting_jingle_glue' | 493 }, # end of target 'remoting_jingle_glue' |
| 493 | 494 |
| 494 { | 495 { |
| 495 'target_name': 'remoting_protocol', | 496 'target_name': 'remoting_protocol', |
| 496 'type': 'static_library', | 497 'type': 'static_library', |
| 497 'dependencies': [ | 498 'dependencies': [ |
| 498 'remoting_base', | 499 'remoting_base', |
| 499 'remoting_jingle_glue', | 500 'remoting_jingle_glue', |
| 500 '../crypto/crypto.gyp:crypto', | 501 '../crypto/crypto.gyp:crypto', |
| 501 '../jingle/jingle.gyp:jingle_glue', | 502 '../jingle/jingle.gyp:jingle_glue', |
| 503 '../net/net.gyp:net', |
| 502 ], | 504 ], |
| 503 'export_dependent_settings': [ | 505 'export_dependent_settings': [ |
| 504 'remoting_jingle_glue', | 506 'remoting_jingle_glue', |
| 505 ], | 507 ], |
| 506 'sources': [ | 508 'sources': [ |
| 507 'protocol/auth_token_utils.cc', | 509 'protocol/auth_token_utils.cc', |
| 508 'protocol/auth_token_utils.h', | 510 'protocol/auth_token_utils.h', |
| 509 'protocol/buffered_socket_writer.cc', | 511 'protocol/buffered_socket_writer.cc', |
| 510 'protocol/buffered_socket_writer.h', | 512 'protocol/buffered_socket_writer.h', |
| 511 'protocol/client_control_sender.cc', | 513 'protocol/client_control_sender.cc', |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 ], # end of 'conditions' | 722 ], # end of 'conditions' |
| 721 }, # end of target 'remoting_unittests' | 723 }, # end of target 'remoting_unittests' |
| 722 ], # end of targets | 724 ], # end of targets |
| 723 } | 725 } |
| 724 | 726 |
| 725 # Local Variables: | 727 # Local Variables: |
| 726 # tab-width:2 | 728 # tab-width:2 |
| 727 # indent-tabs-mode:nil | 729 # indent-tabs-mode:nil |
| 728 # End: | 730 # End: |
| 729 # vim: set expandtab tabstop=2 shiftwidth=2: | 731 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |