| 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 ], | 224 ], |
| 225 }, | 225 }, |
| 226 ], | 226 ], |
| 227 }, # end of target 'webapp_it2me' | 227 }, # end of target 'webapp_it2me' |
| 228 { | 228 { |
| 229 'target_name': 'remoting_base', | 229 'target_name': 'remoting_base', |
| 230 'type': 'static_library', | 230 'type': 'static_library', |
| 231 'dependencies': [ | 231 'dependencies': [ |
| 232 '../base/base.gyp:base', | 232 '../base/base.gyp:base', |
| 233 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 233 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 234 '../ui/ui.gyp:ui_gfx', | 234 '../ui/ui.gyp:ui', |
| 235 '../net/net.gyp:net', | 235 '../net/net.gyp:net', |
| 236 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 236 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 237 '../third_party/libvpx/libvpx.gyp:libvpx_include', | 237 '../third_party/libvpx/libvpx.gyp:libvpx_include', |
| 238 '../third_party/zlib/zlib.gyp:zlib', | 238 '../third_party/zlib/zlib.gyp:zlib', |
| 239 '../media/media.gyp:yuv_convert', | 239 '../media/media.gyp:yuv_convert', |
| 240 'remoting_jingle_glue', | 240 'remoting_jingle_glue', |
| 241 'proto/chromotocol.gyp:chromotocol_proto_lib', | 241 'proto/chromotocol.gyp:chromotocol_proto_lib', |
| 242 'proto/trace.gyp:trace_proto_lib', | 242 'proto/trace.gyp:trace_proto_lib', |
| 243 # TODO(hclam): Enable VP8 in the build. | 243 # TODO(hclam): Enable VP8 in the build. |
| 244 #'third_party/on2/on2.gyp:vp8', | 244 #'third_party/on2/on2.gyp:vp8', |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 672 'dependencies': [ | 672 'dependencies': [ |
| 673 'remoting_base', | 673 'remoting_base', |
| 674 'remoting_client', | 674 'remoting_client', |
| 675 'remoting_host', | 675 'remoting_host', |
| 676 'remoting_jingle_glue', | 676 'remoting_jingle_glue', |
| 677 'remoting_protocol', | 677 'remoting_protocol', |
| 678 '../base/base.gyp:base', | 678 '../base/base.gyp:base', |
| 679 '../base/base.gyp:base_i18n', | 679 '../base/base.gyp:base_i18n', |
| 680 '../base/base.gyp:test_support_base', | 680 '../base/base.gyp:test_support_base', |
| 681 '../media/media.gyp:media', | 681 '../media/media.gyp:media', |
| 682 '../ui/ui.gyp:ui_gfx', | 682 '../ui/ui.gyp:ui', |
| 683 '../testing/gmock.gyp:gmock', | 683 '../testing/gmock.gyp:gmock', |
| 684 '../testing/gtest.gyp:gtest', | 684 '../testing/gtest.gyp:gtest', |
| 685 ], | 685 ], |
| 686 'include_dirs': [ | 686 'include_dirs': [ |
| 687 '../testing/gmock/include', | 687 '../testing/gmock/include', |
| 688 ], | 688 ], |
| 689 'sources': [ | 689 'sources': [ |
| 690 'base/auth_token_util_unittest.cc', | 690 'base/auth_token_util_unittest.cc', |
| 691 'base/codec_test.cc', | 691 'base/codec_test.cc', |
| 692 'base/codec_test.h', | 692 'base/codec_test.h', |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 758 ['target_arch=="arm"', { | 758 ['target_arch=="arm"', { |
| 759 'sources!': [ | 759 'sources!': [ |
| 760 'base/decoder_vp8_unittest.cc', | 760 'base/decoder_vp8_unittest.cc', |
| 761 'base/encoder_vp8_unittest.cc', | 761 'base/encoder_vp8_unittest.cc', |
| 762 ], | 762 ], |
| 763 }], | 763 }], |
| 764 ], # end of 'conditions' | 764 ], # end of 'conditions' |
| 765 }, # end of target 'remoting_unittests' | 765 }, # end of target 'remoting_unittests' |
| 766 ], # end of targets | 766 ], # end of targets |
| 767 } | 767 } |
| OLD | NEW |