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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 880373008: Enable linking full chrome on windows GN builds again. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: re-add the PDF dependency but make it linux-only Created 5 years, 10 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
« chrome/BUILD.gn ('K') | « chrome/BUILD.gn ('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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 }, 183 },
184 ], 184 ],
185 }], 185 }],
186 # x11 build. Needed for chrome_main.cc initialization of libraries. 186 # x11 build. Needed for chrome_main.cc initialization of libraries.
187 ['use_x11==1', { 187 ['use_x11==1', {
188 'dependencies': [ 188 'dependencies': [
189 '../build/linux/system.gyp:x11', 189 '../build/linux/system.gyp:x11',
190 '../build/linux/system.gyp:xext', 190 '../build/linux/system.gyp:xext',
191 ], 191 ],
192 }], 192 }],
193 ['enable_plugins==1', { 193 ['OS=="linux" and enable_plugins==1', {
194 'dependencies': [ 194 'dependencies': [
195 '../pdf/pdf.gyp:pdf', 195 '../pdf/pdf.gyp:pdf',
196 ], 196 ],
197 }], 197 }],
198 ], 198 ],
199 'sources': [ 199 'sources': [
200 'app/chrome_dll_resource.h', 200 'app/chrome_dll_resource.h',
201 'app/chrome_main.cc', 201 'app/chrome_main.cc',
202 'app/chrome_main_delegate.cc', 202 'app/chrome_main_delegate.cc',
203 'app/chrome_main_delegate.h', 203 'app/chrome_main_delegate.h',
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 'dependencies': [ 684 'dependencies': [
685 'chrome_nacl_win64', 685 'chrome_nacl_win64',
686 ], 686 ],
687 }], 687 }],
688 ], 688 ],
689 }, 689 },
690 ], 690 ],
691 }], 691 }],
692 ], 692 ],
693 } 693 }
OLDNEW
« chrome/BUILD.gn ('K') | « chrome/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698