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

Side by Side Diff: content/content_child.gypi

Issue 17704002: Move image_decoder.cc/.h from webkit\glue to content\child. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 5 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 '../ui/ui.gyp:ui', 9 '../ui/ui.gyp:ui',
10 '../url/url.gyp:url_lib', 10 '../url/url.gyp:url_lib',
(...skipping 22 matching lines...) Expand all
33 'child/database_util.cc', 33 'child/database_util.cc',
34 'child/database_util.h', 34 'child/database_util.h',
35 'child/fileapi/file_system_dispatcher.cc', 35 'child/fileapi/file_system_dispatcher.cc',
36 'child/fileapi/file_system_dispatcher.h', 36 'child/fileapi/file_system_dispatcher.h',
37 'child/fileapi/webfilesystem_callback_adapters.cc', 37 'child/fileapi/webfilesystem_callback_adapters.cc',
38 'child/fileapi/webfilesystem_callback_adapters.h', 38 'child/fileapi/webfilesystem_callback_adapters.h',
39 'child/fileapi/webfilesystem_impl.cc', 39 'child/fileapi/webfilesystem_impl.cc',
40 'child/fileapi/webfilesystem_impl.h', 40 'child/fileapi/webfilesystem_impl.h',
41 'child/fileapi/webfilewriter_impl.cc', 41 'child/fileapi/webfilewriter_impl.cc',
42 'child/fileapi/webfilewriter_impl.h', 42 'child/fileapi/webfilewriter_impl.h',
43 'child/image_decoder.cc',
44 'child/image_decoder.h',
43 'child/indexed_db/indexed_db_dispatcher.cc', 45 'child/indexed_db/indexed_db_dispatcher.cc',
44 'child/indexed_db/indexed_db_dispatcher.h', 46 'child/indexed_db/indexed_db_dispatcher.h',
45 'child/indexed_db/indexed_db_message_filter.cc', 47 'child/indexed_db/indexed_db_message_filter.cc',
46 'child/indexed_db/indexed_db_message_filter.h', 48 'child/indexed_db/indexed_db_message_filter.h',
47 'child/indexed_db/proxy_webidbcursor_impl.cc', 49 'child/indexed_db/proxy_webidbcursor_impl.cc',
48 'child/indexed_db/proxy_webidbcursor_impl.h', 50 'child/indexed_db/proxy_webidbcursor_impl.h',
49 'child/indexed_db/proxy_webidbdatabase_impl.cc', 51 'child/indexed_db/proxy_webidbdatabase_impl.cc',
50 'child/indexed_db/proxy_webidbdatabase_impl.h', 52 'child/indexed_db/proxy_webidbdatabase_impl.h',
51 'child/indexed_db/proxy_webidbfactory_impl.cc', 53 'child/indexed_db/proxy_webidbfactory_impl.cc',
52 'child/indexed_db/proxy_webidbfactory_impl.h', 54 'child/indexed_db/proxy_webidbfactory_impl.h',
(...skipping 26 matching lines...) Expand all
79 'child/thread_safe_sender.cc', 81 'child/thread_safe_sender.cc',
80 'child/thread_safe_sender.h', 82 'child/thread_safe_sender.h',
81 'child/webblobregistry_impl.cc', 83 'child/webblobregistry_impl.cc',
82 'child/webblobregistry_impl.h', 84 'child/webblobregistry_impl.h',
83 'child/web_database_observer_impl.cc', 85 'child/web_database_observer_impl.cc',
84 'child/web_database_observer_impl.h', 86 'child/web_database_observer_impl.h',
85 'child/webkitplatformsupport_impl.cc', 87 'child/webkitplatformsupport_impl.cc',
86 'child/webkitplatformsupport_impl.h', 88 'child/webkitplatformsupport_impl.h',
87 'child/webmessageportchannel_impl.cc', 89 'child/webmessageportchannel_impl.cc',
88 'child/webmessageportchannel_impl.h', 90 'child/webmessageportchannel_impl.h',
91 'public/child/image_decoder_utils.h',
jam 2013/06/25 23:24:32 nit: by convention, we put "public/" at the front
ananta 2013/06/25 23:35:28 Done.
89 ], 92 ],
90 'conditions': [ 93 'conditions': [
91 ['OS=="android"', { 94 ['OS=="android"', {
92 'includes': [ 95 'includes': [
93 '../build/android/cpufeatures.gypi', 96 '../build/android/cpufeatures.gypi',
94 ], 97 ],
95 }], 98 }],
96 ['OS=="ios"', { 99 ['OS=="ios"', {
97 'sources/': [ 100 'sources/': [
98 # iOS only needs a small portion of content; exclude all the 101 # iOS only needs a small portion of content; exclude all the
99 # implementation, and re-include what is used. 102 # implementation, and re-include what is used.
100 ['exclude', '\\.(cc|mm)$'], 103 ['exclude', '\\.(cc|mm)$'],
101 ], 104 ],
102 }, { # OS!="ios" 105 }, { # OS!="ios"
103 'dependencies': [ 106 'dependencies': [
104 '../third_party/WebKit/public/blink.gyp:blink', 107 '../third_party/WebKit/public/blink.gyp:blink',
105 '../third_party/npapi/npapi.gyp:npapi', 108 '../third_party/npapi/npapi.gyp:npapi',
106 '../webkit/base/webkit_base.gyp:webkit_base', 109 '../webkit/base/webkit_base.gyp:webkit_base',
107 '../webkit/support/webkit_support.gyp:glue_child', 110 '../webkit/support/webkit_support.gyp:glue_child',
108 ], 111 ],
109 }], 112 }],
110 ], 113 ],
111 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698