OLD | NEW |
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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'nacl_target': 0, | 8 'nacl_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 'dependencies': [ | 64 'dependencies': [ |
65 # TODO(gregoryd): chrome_resources and chrome_strings could be | 65 # TODO(gregoryd): chrome_resources and chrome_strings could be |
66 # shared with the 64-bit target, but it does not work due to a gyp | 66 # shared with the 64-bit target, but it does not work due to a gyp |
67 #issue | 67 #issue |
68 'chrome_resources', | 68 'chrome_resources', |
69 'chrome_strings', | 69 'chrome_strings', |
70 'common', | 70 'common', |
71 '../third_party/npapi/npapi.gyp:npapi', | 71 '../third_party/npapi/npapi.gyp:npapi', |
72 '../webkit/support/webkit_support.gyp:glue', | 72 '../webkit/support/webkit_support.gyp:glue', |
73 '../native_client/src/trusted/plugin/plugin.gyp:npGoogleNaClPluginChrome
', | 73 '../native_client/src/trusted/plugin/plugin.gyp:npGoogleNaClPluginChrome
', |
| 74 '../native_client/src/trusted/plugin/plugin.gyp:ppGoogleNaClPluginChrome
', |
74 '../native_client/src/trusted/service_runtime/service_runtime.gyp:sel', | 75 '../native_client/src/trusted/service_runtime/service_runtime.gyp:sel', |
75 '../native_client/src/trusted/validator_x86/validator_x86.gyp:ncvalidate
', | 76 '../native_client/src/trusted/validator_x86/validator_x86.gyp:ncvalidate
', |
76 '../native_client/src/trusted/platform_qualify/platform_qualify.gyp:plat
form_qual_lib', | 77 '../native_client/src/trusted/platform_qualify/platform_qualify.gyp:plat
form_qual_lib', |
77 ], | 78 ], |
78 'direct_dependent_settings': { | 79 'direct_dependent_settings': { |
79 'defines': [ | 80 'defines': [ |
80 'NACL_BLOCK_SHIFT=5', | 81 'NACL_BLOCK_SHIFT=5', |
81 'NACL_BLOCK_SIZE=32', | 82 'NACL_BLOCK_SIZE=32', |
82 '<@(nacl_defines)', | 83 '<@(nacl_defines)', |
83 ], | 84 ], |
84 }, | 85 }, |
85 'conditions': [ | |
86 ['OS=="mac"', { | |
87 'dependencies': [ | |
88 # TODO(abarth): We should build ppGoogleNaClPluginChrome on all plat
forms. | |
89 '../native_client/src/trusted/plugin/plugin.gyp:ppGoogleNaClPluginCh
rome', | |
90 ], | |
91 }] | |
92 ], | |
93 }, | 86 }, |
94 ], | 87 ], |
95 'conditions': [ | 88 'conditions': [ |
96 ['OS=="win"', { | 89 ['OS=="win"', { |
97 'targets': [ | 90 'targets': [ |
98 { | 91 { |
99 'target_name': 'nacl_win64', | 92 'target_name': 'nacl_win64', |
100 'type': '<(library)', | 93 'type': '<(library)', |
101 'msvs_guid': '14135464-9FB9-42E3-99D8-791116FA1204', | 94 'msvs_guid': '14135464-9FB9-42E3-99D8-791116FA1204', |
102 'variables': { | 95 'variables': { |
(...skipping 27 matching lines...) Expand all Loading... |
130 'NACL_BLOCK_SHIFT=5', | 123 'NACL_BLOCK_SHIFT=5', |
131 'NACL_BLOCK_SIZE=32', | 124 'NACL_BLOCK_SIZE=32', |
132 '<@(nacl_defines)', | 125 '<@(nacl_defines)', |
133 ], | 126 ], |
134 }, | 127 }, |
135 }, | 128 }, |
136 ], | 129 ], |
137 }], | 130 }], |
138 ], | 131 ], |
139 } | 132 } |
OLD | NEW |