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

Side by Side Diff: app/app.gyp

Issue 915002: Create a toplevel gfx/ dir and seed it with icon_util.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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/app_base.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) 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', '<(DEPTH)/build/apply_locales.py',], 8 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py',],
9 'chromium_code': 1, 9 'chromium_code': 1,
10 'grit_info_cmd': ['python', '../tools/grit/grit_info.py',], 10 'grit_info_cmd': ['python', '../tools/grit/grit_info.py',],
(...skipping 25 matching lines...) Expand all
36 '../third_party/libxml/libxml.gyp:libxml', 36 '../third_party/libxml/libxml.gyp:libxml',
37 '../third_party/zlib/zlib.gyp:zlib', 37 '../third_party/zlib/zlib.gyp:zlib',
38 ], 38 ],
39 'sources': [ 39 'sources': [
40 'animation_unittest.cc', 40 'animation_unittest.cc',
41 'clipboard/clipboard_unittest.cc', 41 'clipboard/clipboard_unittest.cc',
42 'gfx/codec/jpeg_codec_unittest.cc', 42 'gfx/codec/jpeg_codec_unittest.cc',
43 'gfx/codec/png_codec_unittest.cc', 43 'gfx/codec/png_codec_unittest.cc',
44 'gfx/color_utils_unittest.cc', 44 'gfx/color_utils_unittest.cc',
45 'gfx/font_unittest.cc', 45 'gfx/font_unittest.cc',
46 'gfx/icon_util_unittest.cc',
47 'gfx/insets_unittest.cc', 46 'gfx/insets_unittest.cc',
48 'gfx/native_theme_win_unittest.cc', 47 'gfx/native_theme_win_unittest.cc',
49 'gfx/skbitmap_operations_unittest.cc', 48 'gfx/skbitmap_operations_unittest.cc',
50 'gfx/text_elider_unittest.cc', 49 'gfx/text_elider_unittest.cc',
51 'l10n_util_mac_unittest.mm', 50 'l10n_util_mac_unittest.mm',
52 'l10n_util_unittest.cc', 51 'l10n_util_unittest.cc',
53 'os_exchange_data_win_unittest.cc', 52 'os_exchange_data_win_unittest.cc',
54 'run_all_unittests.cc', 53 'run_all_unittests.cc',
55 'system_monitor_unittest.cc', 54 'system_monitor_unittest.cc',
56 'test_suite.h', 55 'test_suite.h',
57 'sql/connection_unittest.cc', 56 'sql/connection_unittest.cc',
58 'sql/statement_unittest.cc', 57 'sql/statement_unittest.cc',
59 'sql/transaction_unittest.cc', 58 'sql/transaction_unittest.cc',
60 'tree_node_iterator_unittest.cc', 59 'tree_node_iterator_unittest.cc',
61 'win_util_unittest.cc', 60 'win_util_unittest.cc',
62 ], 61 ],
63 'include_dirs': [ 62 'include_dirs': [
64 '..', 63 '..',
65 ], 64 ],
66 'conditions': [ 65 'conditions': [
67 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 66 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
68 'dependencies': [ 67 'dependencies': [
69 '../build/linux/system.gyp:gtk', 68 '../build/linux/system.gyp:gtk',
70 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 69 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
71 ], 70 ],
72 }], 71 }],
73 ['OS!="win"', { 72 ['OS!="win"', {
74 'sources!': [ 73 'sources!': [
75 'gfx/icon_util_unittest.cc',
76 'gfx/native_theme_win_unittest.cc', 74 'gfx/native_theme_win_unittest.cc',
77 'os_exchange_data_win_unittest.cc', 75 'os_exchange_data_win_unittest.cc',
78 'win_util_unittest.cc', 76 'win_util_unittest.cc',
79 ], 77 ],
80 }], 78 }],
81 ['OS =="linux" or OS =="freebsd"', { 79 ['OS =="linux" or OS =="freebsd"', {
82 'conditions': [ 80 'conditions': [
83 ['linux_use_tcmalloc==1', { 81 ['linux_use_tcmalloc==1', {
84 'dependencies': [ 82 'dependencies': [
85 '../base/allocator/allocator.gyp:allocator', 83 '../base/allocator/allocator.gyp:allocator',
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 ], 162 ],
165 }, 163 },
166 ], 164 ],
167 } 165 }
168 166
169 # Local Variables: 167 # Local Variables:
170 # tab-width:2 168 # tab-width:2
171 # indent-tabs-mode:nil 169 # indent-tabs-mode:nil
172 # End: 170 # End:
173 # vim: set expandtab tabstop=2 shiftwidth=2: 171 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | app/app_base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698