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

Side by Side Diff: webkit/tools/test_shell/test_shell.gypi

Issue 7019041: Fix up PathProvider on the Mac for FILE_MODULE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Search for osmesa in build dir, and get rid of copies. Created 9 years, 7 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
« base/base_paths_mac.mm ('K') | « ui/gfx/gl/gl_implementation_mac.cc ('k') | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'test_shell_windows_resource_files': [ 7 'test_shell_windows_resource_files': [
8 'resources/test_shell.rc', 8 'resources/test_shell.rc',
9 '../../glue/resources/pan_east.cur', 9 '../../glue/resources/pan_east.cur',
10 '../../glue/resources/pan_middle.cur', 10 '../../glue/resources/pan_middle.cur',
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 ], 275 ],
276 'dependencies': [ 276 'dependencies': [
277 '<(DEPTH)/build/linux/system.gyp:gtk', 277 '<(DEPTH)/build/linux/system.gyp:gtk',
278 'test_shell_resources', 278 'test_shell_resources',
279 'test_shell_pak', 279 'test_shell_pak',
280 ], 280 ],
281 }], 281 }],
282 ['OS=="mac"', { 282 ['OS=="mac"', {
283 'product_name': 'TestShell', 283 'product_name': 'TestShell',
284 'dependencies': [ 284 'dependencies': [
285 'layout_test_helper', 'copy_mesa', 285 'layout_test_helper',
286 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
286 ], 287 ],
287 'variables': { 288 'variables': {
288 'repack_path': '../../../tools/data_pack/repack.py', 289 'repack_path': '../../../tools/data_pack/repack.py',
289 }, 290 },
290 'actions': [ 291 'actions': [
291 { 292 {
292 # TODO(mark): Make this work with more languages than the 293 # TODO(mark): Make this work with more languages than the
293 # hardcoded en-US. 294 # hardcoded en-US.
294 'action_name': 'repack_locale', 295 'action_name': 'repack_locale',
295 'variables': { 296 'variables': {
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 }, 742 },
742 'sources': [ 743 'sources': [
743 'mac/layout_test_helper.mm', 744 'mac/layout_test_helper.mm',
744 ], 745 ],
745 'link_settings': { 746 'link_settings': {
746 'libraries': [ 747 'libraries': [
747 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', 748 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
748 ], 749 ],
749 }, 750 },
750 }, 751 },
751 {
752 'target_name': 'copy_mesa',
753 'type': 'none',
754 'dependencies': ['<(DEPTH)/third_party/mesa/mesa.gyp:osmesa'],
755 'copies': [{
756 'destination': '<(PRODUCT_DIR)/TestShell.app/Contents/MacOS/',
757 'files': ['<(PRODUCT_DIR)/osmesa.so'],
758 }],
759 },
760 ], 752 ],
761 }], 753 }],
762 ], 754 ],
763 } 755 }
764 756
765 # Local Variables: 757 # Local Variables:
766 # tab-width:2 758 # tab-width:2
767 # indent-tabs-mode:nil 759 # indent-tabs-mode:nil
768 # End: 760 # End:
769 # vim: set expandtab tabstop=2 shiftwidth=2: 761 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« base/base_paths_mac.mm ('K') | « ui/gfx/gl/gl_implementation_mac.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698