| 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_it2me' | 229 }, # end of target 'webapp_it2me' |
| 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 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 235 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 236 '../ui/ui.gyp:ui_gfx', | 236 '../ui/ui.gyp:ui', |
| 237 '../net/net.gyp:net', | 237 '../net/net.gyp:net', |
| 238 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 238 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 239 '../third_party/libvpx/libvpx.gyp:libvpx_include', | 239 '../third_party/libvpx/libvpx.gyp:libvpx_include', |
| 240 '../third_party/zlib/zlib.gyp:zlib', | 240 '../third_party/zlib/zlib.gyp:zlib', |
| 241 '../media/media.gyp:yuv_convert', | 241 '../media/media.gyp:yuv_convert', |
| 242 'remoting_jingle_glue', | 242 'remoting_jingle_glue', |
| 243 'proto/chromotocol.gyp:chromotocol_proto_lib', | 243 'proto/chromotocol.gyp:chromotocol_proto_lib', |
| 244 'proto/trace.gyp:trace_proto_lib', | 244 'proto/trace.gyp:trace_proto_lib', |
| 245 # TODO(hclam): Enable VP8 in the build. | 245 # TODO(hclam): Enable VP8 in the build. |
| 246 #'third_party/on2/on2.gyp:vp8', | 246 #'third_party/on2/on2.gyp:vp8', |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 671 'dependencies': [ | 671 'dependencies': [ |
| 672 'remoting_base', | 672 'remoting_base', |
| 673 'remoting_client', | 673 'remoting_client', |
| 674 'remoting_host', | 674 'remoting_host', |
| 675 'remoting_jingle_glue', | 675 'remoting_jingle_glue', |
| 676 'remoting_protocol', | 676 'remoting_protocol', |
| 677 '../base/base.gyp:base', | 677 '../base/base.gyp:base', |
| 678 '../base/base.gyp:base_i18n', | 678 '../base/base.gyp:base_i18n', |
| 679 '../base/base.gyp:test_support_base', | 679 '../base/base.gyp:test_support_base', |
| 680 '../media/media.gyp:media', | 680 '../media/media.gyp:media', |
| 681 '../ui/ui.gyp:ui_gfx', | 681 '../ui/ui.gyp:ui', |
| 682 '../testing/gmock.gyp:gmock', | 682 '../testing/gmock.gyp:gmock', |
| 683 '../testing/gtest.gyp:gtest', | 683 '../testing/gtest.gyp:gtest', |
| 684 ], | 684 ], |
| 685 'include_dirs': [ | 685 'include_dirs': [ |
| 686 '../testing/gmock/include', | 686 '../testing/gmock/include', |
| 687 ], | 687 ], |
| 688 'sources': [ | 688 'sources': [ |
| 689 'base/auth_token_util_unittest.cc', | 689 'base/auth_token_util_unittest.cc', |
| 690 'base/codec_test.cc', | 690 'base/codec_test.cc', |
| 691 'base/codec_test.h', | 691 'base/codec_test.h', |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 ], # end of 'conditions' | 763 ], # end of 'conditions' |
| 764 }, # end of target 'remoting_unittests' | 764 }, # end of target 'remoting_unittests' |
| 765 ], # end of targets | 765 ], # end of targets |
| 766 } | 766 } |
| 767 | 767 |
| 768 # Local Variables: | 768 # Local Variables: |
| 769 # tab-width:2 | 769 # tab-width:2 |
| 770 # indent-tabs-mode:nil | 770 # indent-tabs-mode:nil |
| 771 # End: | 771 # End: |
| 772 # vim: set expandtab tabstop=2 shiftwidth=2: | 772 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |