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

Side by Side Diff: content/content_common.gypi

Issue 23030005: Android: exclude dead code from android build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes for build breakage Created 7 years, 3 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 | « content/content_browser.gypi ('k') | content/content_renderer.gypi » ('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) 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../net/net.gyp:net', 9 '../net/net.gyp:net',
10 '../skia/skia.gyp:skia', 10 '../skia/skia.gyp:skia',
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 'common/dom_storage/dom_storage_map.cc', 160 'common/dom_storage/dom_storage_map.cc',
161 'common/dom_storage/dom_storage_map.h', 161 'common/dom_storage/dom_storage_map.h',
162 'common/dom_storage/dom_storage_messages.h', 162 'common/dom_storage/dom_storage_messages.h',
163 'common/drag_event_source_info.h', 163 'common/drag_event_source_info.h',
164 'common/drag_messages.h', 164 'common/drag_messages.h',
165 'common/drag_traits.h', 165 'common/drag_traits.h',
166 'common/edit_command.h', 166 'common/edit_command.h',
167 'common/file_utilities_messages.h', 167 'common/file_utilities_messages.h',
168 'common/fileapi/file_system_messages.h', 168 'common/fileapi/file_system_messages.h',
169 'common/fileapi/webblob_messages.h', 169 'common/fileapi/webblob_messages.h',
170 'common/find_match_rect_android.cc',
171 'common/find_match_rect_android.h',
172 'common/font_cache_dispatcher_win.cc', 170 'common/font_cache_dispatcher_win.cc',
173 'common/font_cache_dispatcher_win.h', 171 'common/font_cache_dispatcher_win.h',
174 'common/font_config_ipc_linux.cc', 172 'common/font_config_ipc_linux.cc',
175 'common/font_config_ipc_linux.h', 173 'common/font_config_ipc_linux.h',
176 'common/font_list.cc', 174 'common/font_list.cc',
177 'common/font_list.h', 175 'common/font_list.h',
178 'common/font_list_android.cc',
179 'common/font_list_mac.mm', 176 'common/font_list_mac.mm',
180 'common/font_list_pango.cc', 177 'common/font_list_pango.cc',
181 'common/font_list_win.cc', 178 'common/font_list_win.cc',
182 'common/gamepad_hardware_buffer.h', 179 'common/gamepad_hardware_buffer.h',
183 'common/gamepad_messages.h', 180 'common/gamepad_messages.h',
184 'common/gamepad_user_gesture.cc', 181 'common/gamepad_user_gesture.cc',
185 'common/gamepad_user_gesture.h', 182 'common/gamepad_user_gesture.h',
186 'common/geolocation_messages.h', 183 'common/geolocation_messages.h',
187 'common/gpu/client/command_buffer_proxy_impl.cc', 184 'common/gpu/client/command_buffer_proxy_impl.cc',
188 'common/gpu/client/command_buffer_proxy_impl.h', 185 'common/gpu/client/command_buffer_proxy_impl.h',
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 'sources!': [ 416 'sources!': [
420 'common/plugin_list_posix.cc', 417 'common/plugin_list_posix.cc',
421 ], 418 ],
422 'link_settings': { 419 'link_settings': {
423 'libraries': [ 420 'libraries': [
424 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 421 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
425 ], 422 ],
426 }, 423 },
427 }], 424 }],
428 ['OS=="android"',{ 425 ['OS=="android"',{
426 'sources!': [
427 'common/font_list.cc',
428 'common/sandbox_util.cc',
429 'public/common/child_process_host_delegate.cc',
430 ],
429 'link_settings': { 431 'link_settings': {
430 'libraries': [ 432 'libraries': [
431 '-landroid', # ANativeWindow 433 '-landroid', # ANativeWindow
432 ], 434 ],
433 }, 435 },
434 'dependencies': [ 436 'dependencies': [
435 'content.gyp:content_jni_headers', 437 'content.gyp:content_jni_headers',
436 'content.gyp:common_aidl', 438 'content.gyp:common_aidl',
437 ], 439 ],
438 }], 440 }],
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 '..\\third_party\\directxsdk\\files\\Redist\\<(input)', 581 '..\\third_party\\directxsdk\\files\\Redist\\<(input)',
580 '<(output)', 582 '<(output)',
581 '<(PRODUCT_DIR)', 583 '<(PRODUCT_DIR)',
582 ], 584 ],
583 'msvs_cygwin_shell': 1, 585 'msvs_cygwin_shell': 1,
584 }, 586 },
585 ] 587 ]
586 }], 588 }],
587 ], 589 ],
588 } 590 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | content/content_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698