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

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

Issue 1522223002: Disable warnings failing when using Clang on Windows (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rolled winsdk_samples Created 5 years 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
« no previous file with comments | « third_party/winsdk_samples/winsdk_samples.gyp ('k') | webrtc/base/base_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 'include_dirs': [ 533 'include_dirs': [
534 '<(json_root)', 534 '<(json_root)',
535 ], 535 ],
536 'defines': [ 536 'defines': [
537 # When defined changes the include path for json.h to where it 537 # When defined changes the include path for json.h to where it
538 # is expected to be when building json outside of the standalone 538 # is expected to be when building json outside of the standalone
539 # build. 539 # build.
540 'WEBRTC_EXTERNAL_JSON', 540 'WEBRTC_EXTERNAL_JSON',
541 ], 541 ],
542 }], 542 }],
543 ['OS=="win" and clang==1', {
544 'msvs_settings': {
545 'VCCLCompilerTool': {
546 'AdditionalOptions': [
547 # Disable warnings failing when compiling with Clang on Wind ows.
548 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
549 '-Wno-missing-braces',
550 ],
551 },
552 },
553 }],
543 ], 554 ],
544 }], 555 }],
545 ['OS == "android"', { 556 ['OS == "android"', {
546 'link_settings': { 557 'link_settings': {
547 'libraries': [ 558 'libraries': [
548 '-llog', 559 '-llog',
549 '-lGLESv2', 560 '-lGLESv2',
550 ], 561 ],
551 }, 562 },
552 }, { 563 }, {
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 ], 725 ],
715 }, { 726 }, {
716 'include_dirs': [ 727 'include_dirs': [
717 '<(ssl_root)', 728 '<(ssl_root)',
718 ], 729 ],
719 }], 730 }],
720 ], 731 ],
721 }, 732 },
722 ], 733 ],
723 } 734 }
OLDNEW
« no previous file with comments | « third_party/winsdk_samples/winsdk_samples.gyp ('k') | webrtc/base/base_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698