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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 'urlencode.h', | 282 'urlencode.h', |
283 'worker.cc', | 283 'worker.cc', |
284 'worker.h', | 284 'worker.h', |
285 ], | 285 ], |
286 # TODO(henrike): issue 3307, make rtc_base build without disabling | 286 # TODO(henrike): issue 3307, make rtc_base build without disabling |
287 # these flags. | 287 # these flags. |
288 'cflags!': [ | 288 'cflags!': [ |
289 '-Wextra', | 289 '-Wextra', |
290 '-Wall', | 290 '-Wall', |
291 ], | 291 ], |
292 'cflags_cc!': [ | |
293 '-Wnon-virtual-dtor', | |
294 ], | |
295 'direct_dependent_settings': { | 292 'direct_dependent_settings': { |
296 'cflags_cc!': [ | |
297 '-Wnon-virtual-dtor', | |
298 ], | |
299 'defines': [ | 293 'defines': [ |
300 'FEATURE_ENABLE_SSL', | 294 'FEATURE_ENABLE_SSL', |
301 'SSL_USE_OPENSSL', | 295 'SSL_USE_OPENSSL', |
302 'HAVE_OPENSSL_SSL_H', | 296 'HAVE_OPENSSL_SSL_H', |
303 ], | 297 ], |
304 }, | 298 }, |
305 'include_dirs': [ | 299 'include_dirs': [ |
306 '../../third_party/jsoncpp/overrides/include', | 300 '../../third_party/jsoncpp/overrides/include', |
307 '../../third_party/jsoncpp/source/include', | 301 '../../third_party/jsoncpp/source/include', |
308 ], | 302 ], |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
608 }, | 602 }, |
609 { | 603 { |
610 'target_name': 'gtest_prod', | 604 'target_name': 'gtest_prod', |
611 'type': 'static_library', | 605 'type': 'static_library', |
612 'sources': [ | 606 'sources': [ |
613 'gtest_prod_util.h', | 607 'gtest_prod_util.h', |
614 ], | 608 ], |
615 }, | 609 }, |
616 ], | 610 ], |
617 } | 611 } |
OLD | NEW |