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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 195893032: Disable treating linker warnings as errors on all of chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('k') | no next file » | 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'chrome', 8 'target_name': 'chrome',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 'chrome_initial', ], 10 'dependencies': [ 'chrome_initial', ],
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 }], 590 }],
591 ['OS=="win" and component=="shared_library"', { 591 ['OS=="win" and component=="shared_library"', {
592 'defines': ['COMPILE_CONTENT_STATICALLY'], 592 'defines': ['COMPILE_CONTENT_STATICALLY'],
593 }], 593 }],
594 ['OS=="win"', { 594 ['OS=="win"', {
595 'dependencies': [ 595 'dependencies': [
596 '../win8/metro_driver/metro_driver.gyp:metro_driver', 596 '../win8/metro_driver/metro_driver.gyp:metro_driver',
597 '../win8/delegate_execute/delegate_execute.gyp:*', 597 '../win8/delegate_execute/delegate_execute.gyp:*',
598 ], 598 ],
599 }], 599 }],
600 ['chromeos==1', {
601 'ldflags!': [
602 # http://crbug.com/353127
603 '-Wl,--fatal-warnings',
604 ],
605 }],
606 ], 600 ],
607 }, 601 },
608 ], 602 ],
609 'conditions': [ 603 'conditions': [
610 ['OS=="win"', { 604 ['OS=="win"', {
611 'targets': [ 605 'targets': [
612 { 606 {
613 'target_name': 'image_pre_reader', 607 'target_name': 'image_pre_reader',
614 'type': 'static_library', 608 'type': 'static_library',
615 'sources': [ 609 'sources': [
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 'dependencies': [ 701 'dependencies': [
708 'chrome_nacl_win64', 702 'chrome_nacl_win64',
709 ], 703 ],
710 }], 704 }],
711 ], 705 ],
712 }, 706 },
713 ], 707 ],
714 }], 708 }],
715 ], 709 ],
716 } 710 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698