| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 { | 9 { |
| 10 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 }], # OS=="ios" | 74 }], # OS=="ios" |
| 75 ], | 75 ], |
| 76 'targets': [ | 76 'targets': [ |
| 77 { | 77 { |
| 78 # The subset of rtc_base approved for use outside of libjingle. | 78 # The subset of rtc_base approved for use outside of libjingle. |
| 79 'target_name': 'rtc_base_approved', | 79 'target_name': 'rtc_base_approved', |
| 80 'type': 'static_library', | 80 'type': 'static_library', |
| 81 'sources': [ | 81 'sources': [ |
| 82 'array_view.h', | 82 'array_view.h', |
| 83 'atomicops.h', | 83 'atomicops.h', |
| 84 'bind.h', |
| 84 'bitbuffer.cc', | 85 'bitbuffer.cc', |
| 85 'bitbuffer.h', | 86 'bitbuffer.h', |
| 86 'buffer.cc', | 87 'buffer.cc', |
| 87 'buffer.h', | 88 'buffer.h', |
| 88 'bufferqueue.cc', | 89 'bufferqueue.cc', |
| 89 'bufferqueue.h', | 90 'bufferqueue.h', |
| 90 'bytebuffer.cc', | 91 'bytebuffer.cc', |
| 91 'bytebuffer.h', | 92 'bytebuffer.h', |
| 92 'byteorder.h', | 93 'byteorder.h', |
| 93 'checks.cc', | 94 'checks.cc', |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 ], | 372 ], |
| 372 'direct_dependent_settings': { | 373 'direct_dependent_settings': { |
| 373 'defines': [ | 374 'defines': [ |
| 374 'NO_MAIN_THREAD_WRAPPING', | 375 'NO_MAIN_THREAD_WRAPPING', |
| 375 ], | 376 ], |
| 376 }, | 377 }, |
| 377 }, { | 378 }, { |
| 378 'sources': [ | 379 'sources': [ |
| 379 'bandwidthsmoother.cc', | 380 'bandwidthsmoother.cc', |
| 380 'bandwidthsmoother.h', | 381 'bandwidthsmoother.h', |
| 381 'bind.h', | |
| 382 'callback.h', | 382 'callback.h', |
| 383 'fileutils_mock.h', | 383 'fileutils_mock.h', |
| 384 'httpserver.cc', | 384 'httpserver.cc', |
| 385 'httpserver.h', | 385 'httpserver.h', |
| 386 'json.cc', | 386 'json.cc', |
| 387 'json.h', | 387 'json.h', |
| 388 'logsinks.cc', | 388 'logsinks.cc', |
| 389 'logsinks.h', | 389 'logsinks.h', |
| 390 'mathutils.h', | 390 'mathutils.h', |
| 391 'multipart.cc', | 391 'multipart.cc', |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 }, | 656 }, |
| 657 { | 657 { |
| 658 'target_name': 'gtest_prod', | 658 'target_name': 'gtest_prod', |
| 659 'type': 'static_library', | 659 'type': 'static_library', |
| 660 'sources': [ | 660 'sources': [ |
| 661 'gtest_prod_util.h', | 661 'gtest_prod_util.h', |
| 662 ], | 662 ], |
| 663 }, | 663 }, |
| 664 ], | 664 ], |
| 665 } | 665 } |
| OLD | NEW |