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

Side by Side Diff: app/app.gyp

Issue 243076: Move the JPEG and PNG codecs from base/gfx to app/gfx/codec. Move the classes... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | « no previous file | app/gfx/codec/DEPS » ('j') | build/common.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'variables': { 6 'variables': {
7 # TODO: remove this helper when we have loops in GYP 7 # TODO: remove this helper when we have loops in GYP
8 'apply_locales_cmd': ['python', '../chrome/tools/build/apply_locales.py',], 8 'apply_locales_cmd': ['python', '../chrome/tools/build/apply_locales.py',],
9 'chromium_code': 1, 9 'chromium_code': 1,
10 }, 10 },
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 'msvs_guid': '4631946D-7D5F-44BD-A5A8-504C0A7033BE', 42 'msvs_guid': '4631946D-7D5F-44BD-A5A8-504C0A7033BE',
43 'dependencies': [ 43 'dependencies': [
44 'app_resources', 44 'app_resources',
45 'app_strings', 45 'app_strings',
46 '../base/base.gyp:base', 46 '../base/base.gyp:base',
47 '../base/base.gyp:base_gfx', 47 '../base/base.gyp:base_gfx',
48 '../net/net.gyp:net', 48 '../net/net.gyp:net',
49 '../skia/skia.gyp:skia', 49 '../skia/skia.gyp:skia',
50 '../third_party/icu/icu.gyp:icui18n', 50 '../third_party/icu/icu.gyp:icui18n',
51 '../third_party/icu/icu.gyp:icuuc', 51 '../third_party/icu/icu.gyp:icuuc',
52 '../third_party/libjpeg/libjpeg.gyp:libjpeg',
53 '../third_party/libpng/libpng.gyp:libpng',
52 '../third_party/sqlite/sqlite.gyp:sqlite', 54 '../third_party/sqlite/sqlite.gyp:sqlite',
55 '../third_party/zlib/zlib.gyp:zlib',
53 ], 56 ],
54 'include_dirs': [ 57 'include_dirs': [
55 '..', 58 '..',
56 '../chrome/third_party/wtl/include', 59 '../chrome/third_party/wtl/include',
57 ], 60 ],
58 'sources': [ 61 'sources': [
59 # All .cc, .h, and .mm files under app/ except for tests. 62 # All .cc, .h, and .mm files under app/ except for tests.
60 'animation.cc', 63 'animation.cc',
61 'animation.h', 64 'animation.h',
62 'active_window_watcher_x.cc', 65 'active_window_watcher_x.cc',
63 'active_window_watcher_x.h', 66 'active_window_watcher_x.h',
64 'app_paths.h', 67 'app_paths.h',
65 'app_paths.cc', 68 'app_paths.cc',
66 'app_switches.h', 69 'app_switches.h',
67 'app_switches.cc', 70 'app_switches.cc',
68 'combobox_model.h', 71 'combobox_model.h',
69 'drag_drop_types_gtk.cc', 72 'drag_drop_types_gtk.cc',
70 'drag_drop_types_win.cc', 73 'drag_drop_types_win.cc',
71 'drag_drop_types.h', 74 'drag_drop_types.h',
72 'gfx/canvas.cc', 75 'gfx/canvas.cc',
73 'gfx/canvas.h', 76 'gfx/canvas.h',
74 'gfx/canvas_linux.cc', 77 'gfx/canvas_linux.cc',
75 'gfx/canvas_mac.mm', 78 'gfx/canvas_mac.mm',
76 'gfx/canvas_win.cc', 79 'gfx/canvas_win.cc',
80 'gfx/codec/jpeg_codec.cc',
81 'gfx/codec/jpeg_codec.h',
82 'gfx/codec/png_codec.cc',
83 'gfx/codec/png_codec.h',
77 'gfx/font.h', 84 'gfx/font.h',
78 'gfx/font_gtk.cc', 85 'gfx/font_gtk.cc',
79 'gfx/font_mac.mm', 86 'gfx/font_mac.mm',
80 'gfx/font_skia.cc', 87 'gfx/font_skia.cc',
81 'gfx/font_win.cc', 88 'gfx/font_win.cc',
82 'gfx/color_utils.cc', 89 'gfx/color_utils.cc',
83 'gfx/color_utils.h', 90 'gfx/color_utils.h',
84 'gfx/favicon_size.h', 91 'gfx/favicon_size.h',
85 'gfx/icon_util.cc', 92 'gfx/icon_util.cc',
86 'gfx/icon_util.h', 93 'gfx/icon_util.h',
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 'type': 'executable', 199 'type': 'executable',
193 'msvs_guid': 'B4D59AE8-8D2F-97E1-A8E9-6D2826729530', 200 'msvs_guid': 'B4D59AE8-8D2F-97E1-A8E9-6D2826729530',
194 'dependencies': [ 201 'dependencies': [
195 'app_base', 202 'app_base',
196 'app_resources', 203 'app_resources',
197 '../net/net.gyp:net_test_support', 204 '../net/net.gyp:net_test_support',
198 '../skia/skia.gyp:skia', 205 '../skia/skia.gyp:skia',
199 '../testing/gtest.gyp:gtest', 206 '../testing/gtest.gyp:gtest',
200 '../third_party/icu/icu.gyp:icui18n', 207 '../third_party/icu/icu.gyp:icui18n',
201 '../third_party/icu/icu.gyp:icuuc', 208 '../third_party/icu/icu.gyp:icuuc',
209 '../third_party/libjpeg/libjpeg.gyp:libjpeg',
210 '../third_party/libpng/libpng.gyp:libpng',
202 '../third_party/libxml/libxml.gyp:libxml', 211 '../third_party/libxml/libxml.gyp:libxml',
212 '../third_party/zlib/zlib.gyp:zlib',
203 ], 213 ],
204 'sources': [ 214 'sources': [
205 'animation_unittest.cc', 215 'animation_unittest.cc',
216 'gfx/codec/jpeg_codec_unittest.cc',
217 'gfx/codec/png_codec_unittest.cc',
206 'gfx/color_utils_unittest.cc', 218 'gfx/color_utils_unittest.cc',
207 'gfx/font_unittest.cc', 219 'gfx/font_unittest.cc',
208 'gfx/icon_util_unittest.cc', 220 'gfx/icon_util_unittest.cc',
209 'gfx/skbitmap_operations_unittest.cc', 221 'gfx/skbitmap_operations_unittest.cc',
210 'gfx/text_elider_unittest.cc', 222 'gfx/text_elider_unittest.cc',
211 'l10n_util_mac_unittest.mm', 223 'l10n_util_mac_unittest.mm',
212 'l10n_util_unittest.cc', 224 'l10n_util_unittest.cc',
213 'os_exchange_data_win_unittest.cc', 225 'os_exchange_data_win_unittest.cc',
214 'run_all_unittests.cc', 226 'run_all_unittests.cc',
215 'test_suite.h', 227 'test_suite.h',
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 'process_outputs_as_sources': 1, 372 'process_outputs_as_sources': 1,
361 'message': 'Generating appid information in <(SHARED_INTERMEDIAT E_DIR)/chrome/appid.h' 373 'message': 'Generating appid information in <(SHARED_INTERMEDIAT E_DIR)/chrome/appid.h'
362 }, 374 },
363 ], 375 ],
364 }, 376 },
365 ], 377 ],
366 ], 378 ],
367 }, 379 },
368 ], 380 ],
369 } 381 }
OLDNEW
« no previous file with comments | « no previous file | app/gfx/codec/DEPS » ('j') | build/common.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698