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

Side by Side Diff: ui/base/strings/ui_strings.gyp

Issue 7011032: Make the gyp files more cross-platform across the Unices (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: updated to trunk and fixed some nits 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
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'chromium_code': 1, 3 'chromium_code': 1,
4 'grit_base_out_dir': '<(SHARED_INTERMEDIATE_DIR)/app', 4 'grit_base_out_dir': '<(SHARED_INTERMEDIATE_DIR)/app',
5 }, 5 },
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'ui_strings', 8 'target_name': 'ui_strings',
9 'type': 'none', 9 'type': 'none',
10 'msvs_guid': 'BC3C49A3-D061-4E78-84EE-742DA064DC46', 10 'msvs_guid': 'BC3C49A3-D061-4E78-84EE-742DA064DC46',
(...skipping 22 matching lines...) Expand all
33 ], 33 ],
34 }, 34 },
35 'conditions': [ 35 'conditions': [
36 ['OS=="win"', { 36 ['OS=="win"', {
37 'dependencies': ['../../../build/win/system.gyp:cygwin'], 37 'dependencies': ['../../../build/win/system.gyp:cygwin'],
38 }], 38 }],
39 ], 39 ],
40 }, 40 },
41 ], 41 ],
42 'conditions': [ 42 'conditions': [
43 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { 43 ['os_posix==1 and OS!="mac"', {
44 'targets': [{ 44 'targets': [{
45 'target_name': 'ui_unittest_strings', 45 'target_name': 'ui_unittest_strings',
46 'type': 'none', 46 'type': 'none',
47 'variables': { 47 'variables': {
48 'repack_path': '<(DEPTH)/tools/data_pack/repack.py', 48 'repack_path': '<(DEPTH)/tools/data_pack/repack.py',
49 }, 49 },
50 'actions': [ 50 'actions': [
51 { 51 {
52 'action_name': 'repack_ui_unittest_strings', 52 'action_name': 'repack_ui_unittest_strings',
53 'variables': { 53 'variables': {
(...skipping 18 matching lines...) Expand all
72 'destination': '<(PRODUCT_DIR)/app_unittests_strings', 72 'destination': '<(PRODUCT_DIR)/app_unittests_strings',
73 'files': [ 73 'files': [
74 '<(grit_base_out_dir)/app_resources/app_resources.pak', 74 '<(grit_base_out_dir)/app_resources/app_resources.pak',
75 ], 75 ],
76 }, 76 },
77 ], 77 ],
78 }], 78 }],
79 }], 79 }],
80 ], 80 ],
81 } 81 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698