OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 # This file contains common settings for building WebRTC components. | 9 # This file contains common settings for building WebRTC components. |
10 | 10 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 'webrtc_vp8_dir%': '<(webrtc_root)/modules/video_coding/codecs/vp8', | 51 'webrtc_vp8_dir%': '<(webrtc_root)/modules/video_coding/codecs/vp8', |
52 'webrtc_vp9_dir%': '<(webrtc_root)/modules/video_coding/codecs/vp9', | 52 'webrtc_vp9_dir%': '<(webrtc_root)/modules/video_coding/codecs/vp9', |
53 'include_ilbc%': '<(include_ilbc)', | 53 'include_ilbc%': '<(include_ilbc)', |
54 'include_opus%': '<(include_opus)', | 54 'include_opus%': '<(include_opus)', |
55 'opus_dir%': '<(DEPTH)/third_party/opus', | 55 'opus_dir%': '<(DEPTH)/third_party/opus', |
56 }, | 56 }, |
57 'build_with_chromium%': '<(build_with_chromium)', | 57 'build_with_chromium%': '<(build_with_chromium)', |
58 'build_with_mozilla%': '<(build_with_mozilla)', | 58 'build_with_mozilla%': '<(build_with_mozilla)', |
59 'webrtc_root%': '<(webrtc_root)', | 59 'webrtc_root%': '<(webrtc_root)', |
60 'apk_tests_path%': '<(apk_tests_path)', | 60 'apk_tests_path%': '<(apk_tests_path)', |
| 61 'test_runner_path': '<(DEPTH)/webrtc/build/android/test_runner.py', |
61 'modules_java_gyp_path%': '<(modules_java_gyp_path)', | 62 'modules_java_gyp_path%': '<(modules_java_gyp_path)', |
62 'webrtc_vp8_dir%': '<(webrtc_vp8_dir)', | 63 'webrtc_vp8_dir%': '<(webrtc_vp8_dir)', |
63 'webrtc_vp9_dir%': '<(webrtc_vp9_dir)', | 64 'webrtc_vp9_dir%': '<(webrtc_vp9_dir)', |
64 'include_ilbc%': '<(include_ilbc)', | 65 'include_ilbc%': '<(include_ilbc)', |
65 'include_opus%': '<(include_opus)', | 66 'include_opus%': '<(include_opus)', |
66 'rtc_relative_path%': 1, | 67 'rtc_relative_path%': 1, |
67 'external_libraries%': '0', | 68 'external_libraries%': '0', |
68 'json_root%': '<(DEPTH)/third_party/jsoncpp/source/include/', | 69 'json_root%': '<(DEPTH)/third_party/jsoncpp/source/include/', |
69 # openssl needs to be defined or gyp will complain. Is is only used when | 70 # openssl needs to be defined or gyp will complain. Is is only used when |
70 # when providing external libraries so just use current directory as a | 71 # when providing external libraries so just use current directory as a |
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
500 # For access to standard POSIXish features, use WEBRTC_POSIX instead | 501 # For access to standard POSIXish features, use WEBRTC_POSIX instead |
501 # of a more specific macro. | 502 # of a more specific macro. |
502 'defines': [ | 503 'defines': [ |
503 'WEBRTC_POSIX', | 504 'WEBRTC_POSIX', |
504 ], | 505 ], |
505 }], | 506 }], |
506 ], | 507 ], |
507 }, | 508 }, |
508 }, # target_defaults | 509 }, # target_defaults |
509 } | 510 } |
OLD | NEW |