OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'includes': [ | 6 'includes': [ |
7 'mojo_variables.gypi', | 7 'mojo_variables.gypi', |
8 ], | 8 ], |
9 'target_defaults' : { | 9 'target_defaults' : { |
10 'include_dirs': [ | 10 'include_dirs': [ |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 ['OS=="android"', { | 139 ['OS=="android"', { |
140 'dependencies': [ | 140 'dependencies': [ |
141 '../third_party/ashmem/ashmem.gyp:ashmem', | 141 '../third_party/ashmem/ashmem.gyp:ashmem', |
142 ], | 142 ], |
143 }], | 143 }], |
144 ['OS=="win"', { | 144 ['OS=="win"', { |
145 # Structure was padded due to __declspec(align()), which is | 145 # Structure was padded due to __declspec(align()), which is |
146 # uninteresting. | 146 # uninteresting. |
147 'msvs_disabled_warnings': [ 4324 ], | 147 'msvs_disabled_warnings': [ 4324 ], |
148 }], | 148 }], |
| 149 ['OS=="mac" and OS!="ios"', { |
| 150 'sources': [ |
| 151 'edk/system/mach_port_relay.cc', |
| 152 'edk/system/mach_port_relay.h', |
| 153 ], |
| 154 }], |
149 ], | 155 ], |
150 }, | 156 }, |
151 { | 157 { |
152 # GN version: //mojo/edk/js | 158 # GN version: //mojo/edk/js |
153 'target_name': 'mojo_js_lib', | 159 'target_name': 'mojo_js_lib', |
154 'type': 'static_library', | 160 'type': 'static_library', |
155 'dependencies': [ | 161 'dependencies': [ |
156 '../base/base.gyp:base', | 162 '../base/base.gyp:base', |
157 '../gin/gin.gyp:gin', | 163 '../gin/gin.gyp:gin', |
158 '../v8/tools/gyp/v8.gyp:v8', | 164 '../v8/tools/gyp/v8.gyp:v8', |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 'mojo_public.gyp:mojo_public_test_support', | 257 'mojo_public.gyp:mojo_public_test_support', |
252 'mojo_system_impl', | 258 'mojo_system_impl', |
253 'mojo_test_support_impl', | 259 'mojo_test_support_impl', |
254 ], | 260 ], |
255 'sources': [ | 261 'sources': [ |
256 'edk/test/run_all_perftests.cc', | 262 'edk/test/run_all_perftests.cc', |
257 ], | 263 ], |
258 }, | 264 }, |
259 ], | 265 ], |
260 } | 266 } |
OLD | NEW |