| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'include_tests%': 1, | 7 'include_tests%': 1, |
| 8 'chromium_code': 1, | 8 'chromium_code': 1, |
| 9 }, | 9 }, |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 'targets': [ | 27 'targets': [ |
| 28 { | 28 { |
| 29 'target_name': 'cast_unittests', | 29 'target_name': 'cast_unittests', |
| 30 'type': '<(gtest_target_type)', | 30 'type': '<(gtest_target_type)', |
| 31 'dependencies': [ | 31 'dependencies': [ |
| 32 'cast_config', | 32 'cast_config', |
| 33 'cast_receiver.gyp:cast_receiver', | 33 'cast_receiver.gyp:cast_receiver', |
| 34 'cast_sender.gyp:cast_sender', | 34 'cast_sender.gyp:cast_sender', |
| 35 'logging/logging.gyp:cast_logging', | 35 'logging/logging.gyp:cast_logging', |
| 36 '<(DEPTH)/base/base.gyp:run_all_unittests', | 36 '<(DEPTH)/base/base.gyp:run_all_unittests', |
| 37 '<(DEPTH)/crypto/crypto.gyp:crypto', |
| 37 '<(DEPTH)/net/net.gyp:net', | 38 '<(DEPTH)/net/net.gyp:net', |
| 38 '<(DEPTH)/testing/gmock.gyp:gmock', | 39 '<(DEPTH)/testing/gmock.gyp:gmock', |
| 39 '<(DEPTH)/testing/gtest.gyp:gtest', | 40 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 40 ], | 41 ], |
| 41 'include_dirs': [ | 42 'include_dirs': [ |
| 42 '<(DEPTH)/', | 43 '<(DEPTH)/', |
| 43 '<(DEPTH)/third_party/', | 44 '<(DEPTH)/third_party/', |
| 44 '<(DEPTH)/third_party/webrtc/', | 45 '<(DEPTH)/third_party/webrtc/', |
| 45 ], | 46 ], |
| 46 'sources': [ | 47 'sources': [ |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 'rtcp/rtcp_sender_unittest.cc', | 85 'rtcp/rtcp_sender_unittest.cc', |
| 85 'rtcp/rtcp_unittest.cc', | 86 'rtcp/rtcp_unittest.cc', |
| 86 'video_sender/video_encoder_unittest.cc', | 87 'video_sender/video_encoder_unittest.cc', |
| 87 'video_sender/video_sender_unittest.cc', | 88 'video_sender/video_sender_unittest.cc', |
| 88 ], # source | 89 ], # source |
| 89 }, | 90 }, |
| 90 ], # targets | 91 ], # targets |
| 91 }], # include_tests | 92 }], # include_tests |
| 92 ], | 93 ], |
| 93 } | 94 } |
| OLD | NEW |