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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 8109001: Fix compilation when use_aura is turned ON. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 9 years, 2 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 | « AUTHORS ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': 'renderer', 8 'target_name': 'renderer',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 'renderer/spellchecker/spellcheck_worditerator.cc', 173 'renderer/spellchecker/spellcheck_worditerator.cc',
174 'renderer/spellchecker/spellcheck_worditerator.h', 174 'renderer/spellchecker/spellcheck_worditerator.h',
175 'renderer/static_v8_external_string_resource.cc', 175 'renderer/static_v8_external_string_resource.cc',
176 'renderer/static_v8_external_string_resource.h', 176 'renderer/static_v8_external_string_resource.h',
177 'renderer/translate_helper.cc', 177 'renderer/translate_helper.cc',
178 'renderer/translate_helper.h', 178 'renderer/translate_helper.h',
179 'renderer/visitedlink_slave.cc', 179 'renderer/visitedlink_slave.cc',
180 'renderer/visitedlink_slave.h', 180 'renderer/visitedlink_slave.h',
181 ], 181 ],
182 'conditions': [ 182 'conditions': [
183 ['use_aura == 1', {
184 'dependencies!': [
185 '../content/content.gyp:content_plugin',
186 ],
187 }],
188 ['disable_nacl!=1', { 183 ['disable_nacl!=1', {
189 'dependencies': [ 184 'dependencies': [
190 'nacl', 185 'nacl',
191 ], 186 ],
192 'sources': [ 187 'sources': [
193 'renderer/nacl_desc_wrapper_chrome.cc', 188 'renderer/nacl_desc_wrapper_chrome.cc',
194 ], 189 ],
195 }], 190 }],
196 ['safe_browsing==1', { 191 ['safe_browsing==1', {
197 'defines': [ 192 'defines': [
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 'export_dependent_settings': [ 228 'export_dependent_settings': [
234 '<(allocator_target)', 229 '<(allocator_target)',
235 ], 230 ],
236 }], 231 }],
237 ], 232 ],
238 }], 233 }],
239 ], 234 ],
240 }, 235 },
241 ], 236 ],
242 } 237 }
OLDNEW
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698