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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 10855047: Fix extension link error on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't use an ifdef, just build the missing files Created 8 years, 4 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 | « no previous file | 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': 'renderer', 8 'target_name': 'renderer',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 ['win_use_allocator_shim==1', { 311 ['win_use_allocator_shim==1', {
312 'dependencies': [ 312 'dependencies': [
313 '<(allocator_target)', 313 '<(allocator_target)',
314 ], 314 ],
315 'export_dependent_settings': [ 315 'export_dependent_settings': [
316 '<(allocator_target)', 316 '<(allocator_target)',
317 ], 317 ],
318 }], 318 }],
319 ], 319 ],
320 }], 320 }],
321 ['OS=="android"', {
322 'sources!': [
323 'renderer/extensions/experimental.usb_custom_bindings.cc',
324 'renderer/extensions/experimental.usb_custom_bindings.h',
325 'renderer/resources/extensions/experimental.usb_custom_bindings.js',
326 ],
327 }],
328 ], 321 ],
329 }, 322 },
330 ], 323 ],
331 } 324 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698