OLD | NEW |
1 # | 1 # |
2 # libjingle | 2 # libjingle |
3 # Copyright 2013 Google Inc. | 3 # Copyright 2013 Google Inc. |
4 # | 4 # |
5 # Redistribution and use in source and binary forms, with or without | 5 # Redistribution and use in source and binary forms, with or without |
6 # modification, are permitted provided that the following conditions are met: | 6 # modification, are permitted provided that the following conditions are met: |
7 # | 7 # |
8 # 1. Redistributions of source code must retain the above copyright notice, | 8 # 1. Redistributions of source code must retain the above copyright notice, |
9 # this list of conditions and the following disclaimer. | 9 # this list of conditions and the following disclaimer. |
10 # 2. Redistributions in binary form must reproduce the above copyright notice, | 10 # 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 ], | 116 ], |
117 'conditions': [ | 117 'conditions': [ |
118 # Note: When gyp merges lists, it appends them to the old value. | 118 # Note: When gyp merges lists, it appends them to the old value. |
119 ['OS=="mac"', { | 119 ['OS=="mac"', { |
120 # <(mac_product_name) can contain a space, so don't use FOO=<(FOO) | 120 # <(mac_product_name) can contain a space, so don't use FOO=<(FOO) |
121 # form. | 121 # form. |
122 'action': [ | 122 'action': [ |
123 '--extra-variable', 'mac_product_name', '<(mac_product_name)', | 123 '--extra-variable', 'mac_product_name', '<(mac_product_name)', |
124 ], | 124 ], |
125 }], | 125 }], |
126 ["test_isolation_outdir!=''", { | |
127 'action': [ '--isolate-server', '<(test_isolation_outdir)' ], | |
128 }], | |
129 ], | 126 ], |
130 }, | 127 }, |
131 ], | 128 ], |
132 } | 129 } |
OLD | NEW |