| Index: mojo/mojo.isolate
|
| diff --git a/mojo/mojo.isolate b/mojo/mojo.isolate
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..693e94a3dbb9c0b82e03ecfc06927e1ff74c33a5
|
| --- /dev/null
|
| +++ b/mojo/mojo.isolate
|
| @@ -0,0 +1,31 @@
|
| +# Copyright 2016 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +{
|
| + 'includes': [
|
| + '../base/base.isolate',
|
| + ],
|
| + 'conditions': [
|
| + ['OS=="win"', {
|
| + 'variables': {
|
| + 'files': [
|
| + '<(PRODUCT_DIR)/mojo_public_test_support.dll',
|
| + ],
|
| + },
|
| + }],
|
| + ['OS=="linux"', {
|
| + 'variables': {
|
| + 'files': [
|
| + '<(PRODUCT_DIR)/lib/libmojo_public_test_support.so',
|
| + ],
|
| + },
|
| + }],
|
| + ['OS=="mac"', {
|
| + 'variables': {
|
| + 'files': [
|
| + '<(PRODUCT_DIR)/libmojo_public_test_support.dylib',
|
| + ],
|
| + },
|
| + }],
|
| + ],
|
| +}
|
|
|