| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 '../media/base/yuv_row_posix.cc', | 106 '../media/base/yuv_row_posix.cc', |
| 107 ], | 107 ], |
| 108 }], | 108 }], |
| 109 ], # end of 'conditions' | 109 ], # end of 'conditions' |
| 110 }, # end of target 'chromoting_plugin' | 110 }, # end of target 'chromoting_plugin' |
| 111 | 111 |
| 112 { | 112 { |
| 113 'target_name': 'chromoting_base', | 113 'target_name': 'chromoting_base', |
| 114 'type': '<(library)', | 114 'type': '<(library)', |
| 115 'dependencies': [ | 115 'dependencies': [ |
| 116 '../gfx/gfx.gyp:gfx', | 116 '../ui/gfx/gfx.gyp:gfx', |
| 117 '../media/media.gyp:media', | 117 '../media/media.gyp:media', |
| 118 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 118 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 119 '../third_party/libvpx/libvpx.gyp:libvpx_include', | 119 '../third_party/libvpx/libvpx.gyp:libvpx_include', |
| 120 '../third_party/zlib/zlib.gyp:zlib', | 120 '../third_party/zlib/zlib.gyp:zlib', |
| 121 'chromoting_jingle_glue', | 121 'chromoting_jingle_glue', |
| 122 'proto/chromotocol.gyp:chromotocol_proto_lib', | 122 'proto/chromotocol.gyp:chromotocol_proto_lib', |
| 123 'proto/trace.gyp:trace_proto_lib', | 123 'proto/trace.gyp:trace_proto_lib', |
| 124 # TODO(hclam): Enable VP8 in the build. | 124 # TODO(hclam): Enable VP8 in the build. |
| 125 #'third_party/on2/on2.gyp:vp8', | 125 #'third_party/on2/on2.gyp:vp8', |
| 126 ], | 126 ], |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 'type': 'executable', | 438 'type': 'executable', |
| 439 'dependencies': [ | 439 'dependencies': [ |
| 440 'chromoting_base', | 440 'chromoting_base', |
| 441 'chromoting_client', | 441 'chromoting_client', |
| 442 'chromoting_host', | 442 'chromoting_host', |
| 443 'chromoting_jingle_glue', | 443 'chromoting_jingle_glue', |
| 444 'chromoting_protocol', | 444 'chromoting_protocol', |
| 445 '../base/base.gyp:base', | 445 '../base/base.gyp:base', |
| 446 '../base/base.gyp:base_i18n', | 446 '../base/base.gyp:base_i18n', |
| 447 '../base/base.gyp:test_support_base', | 447 '../base/base.gyp:test_support_base', |
| 448 '../gfx/gfx.gyp:gfx', | 448 '../ui/gfx/gfx.gyp:gfx', |
| 449 '../testing/gmock.gyp:gmock', | 449 '../testing/gmock.gyp:gmock', |
| 450 '../testing/gtest.gyp:gtest', | 450 '../testing/gtest.gyp:gtest', |
| 451 ], | 451 ], |
| 452 'include_dirs': [ | 452 'include_dirs': [ |
| 453 '../testing/gmock/include', | 453 '../testing/gmock/include', |
| 454 ], | 454 ], |
| 455 'sources': [ | 455 'sources': [ |
| 456 'base/codec_test.cc', | 456 'base/codec_test.cc', |
| 457 'base/codec_test.h', | 457 'base/codec_test.h', |
| 458 'base/compound_buffer_unittest.cc', | 458 'base/compound_buffer_unittest.cc', |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 ], # end of 'conditions' | 535 ], # end of 'conditions' |
| 536 }, # end of target 'chromoting_unittests' | 536 }, # end of target 'chromoting_unittests' |
| 537 ], # end of targets | 537 ], # end of targets |
| 538 } | 538 } |
| 539 | 539 |
| 540 # Local Variables: | 540 # Local Variables: |
| 541 # tab-width:2 | 541 # tab-width:2 |
| 542 # indent-tabs-mode:nil | 542 # indent-tabs-mode:nil |
| 543 # End: | 543 # End: |
| 544 # vim: set expandtab tabstop=2 shiftwidth=2: | 544 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |