Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: mojo/mojo_apps_js_unittests.isolate

Issue 575363002: Fail if an isolate entry refers to a missing file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'includes': [ 5 'includes': [
6 '../third_party/icu/icu.isolate', 6 '../third_party/icu/icu.isolate',
7 ], 7 ],
8 'conditions': [ 8 'conditions': [
9 ['OS=="win" or OS=="mac" or OS=="linux"', { 9 ['OS=="win" or OS=="mac" or OS=="linux"', {
10 'variables': { 10 'variables': {
(...skipping 12 matching lines...) Expand all
23 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/', 23 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/',
24 'apps/js/', 24 'apps/js/',
25 'bindings/js/', 25 'bindings/js/',
26 'public/js/bindings/', 26 'public/js/bindings/',
27 ], 27 ],
28 }, 28 },
29 }], 29 }],
30 ['OS=="win"', { 30 ['OS=="win"', {
31 'variables': { 31 'variables': {
32 'isolate_dependency_tracked': [ 32 'isolate_dependency_tracked': [
33 '<(PRODUCT_DIR)/mojo_system.dll',
34 '<(PRODUCT_DIR)/mojo_test_support.dll', 33 '<(PRODUCT_DIR)/mojo_test_support.dll',
35 ], 34 ],
36 }, 35 },
37 }], 36 }],
38 ['OS=="linux"', { 37 ['OS=="linux"', {
39 'variables': { 38 'variables': {
40 'isolate_dependency_tracked': [ 39 'isolate_dependency_tracked': [
41 '<(PRODUCT_DIR)/lib/libmojo_test_support.so', 40 '<(PRODUCT_DIR)/lib/libmojo_test_support.so',
42 ], 41 ],
43 }, 42 },
44 }], 43 }],
45 ['OS=="mac"', { 44 ['OS=="mac"', {
46 'variables': { 45 'variables': {
47 'isolate_dependency_tracked': [ 46 'isolate_dependency_tracked': [
48 '<(PRODUCT_DIR)/libmojo_test_support.dylib', 47 '<(PRODUCT_DIR)/libmojo_test_support.dylib',
49 ], 48 ],
50 }, 49 },
51 }], 50 }],
52 ], 51 ],
53 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698