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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/common_untrusted.gypi', | 10 '../build/common_untrusted.gypi', |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 'mojo_public.gyp:mojo_public_system', | 59 'mojo_public.gyp:mojo_public_system', |
60 ], | 60 ], |
61 'defines': [ | 61 'defines': [ |
62 'MOJO_SYSTEM_IMPL_IMPLEMENTATION', | 62 'MOJO_SYSTEM_IMPL_IMPLEMENTATION', |
63 ], | 63 ], |
64 'sources': [ | 64 'sources': [ |
65 '<@(mojo_edk_ports_sources)', | 65 '<@(mojo_edk_ports_sources)', |
66 '<@(mojo_edk_system_impl_sources)', | 66 '<@(mojo_edk_system_impl_sources)', |
67 '<@(mojo_edk_system_impl_nacl_nonsfi_sources)', | 67 '<@(mojo_edk_system_impl_nacl_nonsfi_sources)', |
68 ], | 68 ], |
| 69 'conditions': [ |
| 70 ['OS=="android" or chromeos==1', { |
| 71 'defines': [ |
| 72 'MOJO_EDK_LEGACY_PROTOCOL', |
| 73 ], |
| 74 }], |
| 75 ], |
69 }, | 76 }, |
70 ], | 77 ], |
71 } | 78 } |
OLD | NEW |