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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 | 9 |
10 'target_defaults': { | 10 'target_defaults': { |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 '../media/base/yuv_row_posix.cc', | 117 '../media/base/yuv_row_posix.cc', |
118 ], | 118 ], |
119 }], | 119 }], |
120 ], # end of 'conditions' | 120 ], # end of 'conditions' |
121 }, # end of target 'chromoting_plugin' | 121 }, # end of target 'chromoting_plugin' |
122 | 122 |
123 { | 123 { |
124 'target_name': 'chromoting_base', | 124 'target_name': 'chromoting_base', |
125 'type': '<(library)', | 125 'type': '<(library)', |
126 'dependencies': [ | 126 'dependencies': [ |
127 '../ui/gfx/gfx.gyp:gfx', | 127 '../ui/ui.gyp:ui_gfx', |
128 '../media/media.gyp:media', | 128 '../media/media.gyp:media', |
129 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 129 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
130 '../third_party/libvpx/libvpx.gyp:libvpx_include', | 130 '../third_party/libvpx/libvpx.gyp:libvpx_include', |
131 '../third_party/zlib/zlib.gyp:zlib', | 131 '../third_party/zlib/zlib.gyp:zlib', |
132 'chromoting_jingle_glue', | 132 'chromoting_jingle_glue', |
133 'proto/chromotocol.gyp:chromotocol_proto_lib', | 133 'proto/chromotocol.gyp:chromotocol_proto_lib', |
134 'proto/trace.gyp:trace_proto_lib', | 134 'proto/trace.gyp:trace_proto_lib', |
135 # TODO(hclam): Enable VP8 in the build. | 135 # TODO(hclam): Enable VP8 in the build. |
136 #'third_party/on2/on2.gyp:vp8', | 136 #'third_party/on2/on2.gyp:vp8', |
137 ], | 137 ], |
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 'type': 'executable', | 505 'type': 'executable', |
506 'dependencies': [ | 506 'dependencies': [ |
507 'chromoting_base', | 507 'chromoting_base', |
508 'chromoting_client', | 508 'chromoting_client', |
509 'chromoting_host', | 509 'chromoting_host', |
510 'chromoting_jingle_glue', | 510 'chromoting_jingle_glue', |
511 'chromoting_protocol', | 511 'chromoting_protocol', |
512 '../base/base.gyp:base', | 512 '../base/base.gyp:base', |
513 '../base/base.gyp:base_i18n', | 513 '../base/base.gyp:base_i18n', |
514 '../base/base.gyp:test_support_base', | 514 '../base/base.gyp:test_support_base', |
515 '../ui/gfx/gfx.gyp:gfx', | 515 '../ui/ui.gyp:ui_gfx', |
516 '../testing/gmock.gyp:gmock', | 516 '../testing/gmock.gyp:gmock', |
517 '../testing/gtest.gyp:gtest', | 517 '../testing/gtest.gyp:gtest', |
518 ], | 518 ], |
519 'include_dirs': [ | 519 'include_dirs': [ |
520 '../testing/gmock/include', | 520 '../testing/gmock/include', |
521 ], | 521 ], |
522 'sources': [ | 522 'sources': [ |
523 'base/codec_test.cc', | 523 'base/codec_test.cc', |
524 'base/codec_test.h', | 524 'base/codec_test.h', |
525 'base/compound_buffer_unittest.cc', | 525 'base/compound_buffer_unittest.cc', |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
608 ], # end of 'conditions' | 608 ], # end of 'conditions' |
609 }, # end of target 'chromoting_unittests' | 609 }, # end of target 'chromoting_unittests' |
610 ], # end of targets | 610 ], # end of targets |
611 } | 611 } |
612 | 612 |
613 # Local Variables: | 613 # Local Variables: |
614 # tab-width:2 | 614 # tab-width:2 |
615 # indent-tabs-mode:nil | 615 # indent-tabs-mode:nil |
616 # End: | 616 # End: |
617 # vim: set expandtab tabstop=2 shiftwidth=2: | 617 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |