Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: webrtc/base/base.gyp

Issue 1593713013: Roll chromium_revision 7a4fb8d..f527e86 (370025:370073) (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Fix/disable Win Clang warnings Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 # build. 545 # build.
546 'WEBRTC_EXTERNAL_JSON', 546 'WEBRTC_EXTERNAL_JSON',
547 ], 547 ],
548 }], 548 }],
549 ['OS=="win" and clang==1', { 549 ['OS=="win" and clang==1', {
550 'msvs_settings': { 550 'msvs_settings': {
551 'VCCLCompilerTool': { 551 'VCCLCompilerTool': {
552 'AdditionalOptions': [ 552 'AdditionalOptions': [
553 # Disable warnings failing when compiling with Clang on Wind ows. 553 # Disable warnings failing when compiling with Clang on Wind ows.
554 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 554 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
555 '-Wno-sign-compare',
555 '-Wno-missing-braces', 556 '-Wno-missing-braces',
556 ], 557 ],
557 }, 558 },
558 }, 559 },
559 }], 560 }],
560 ], 561 ],
561 }], 562 }],
562 ['OS == "android"', { 563 ['OS == "android"', {
563 'link_settings': { 564 'link_settings': {
564 'libraries': [ 565 'libraries': [
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 ], 736 ],
736 }, { 737 }, {
737 'include_dirs': [ 738 'include_dirs': [
738 '<(ssl_root)', 739 '<(ssl_root)',
739 ], 740 ],
740 }], 741 }],
741 ], 742 ],
742 }, 743 },
743 ], 744 ],
744 } 745 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698