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

Side by Side Diff: mojo/mojo_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
« chrome/chrome.isolate ('K') | « mojo/mojo_apps_js_unittests.isolate ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 11 matching lines...) Expand all
22 'isolate_dependency_untracked': [ 22 'isolate_dependency_untracked': [
23 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/', 23 '<(PRODUCT_DIR)/gen/mojo/public/interfaces/bindings/tests/',
24 'bindings/js/', 24 'bindings/js/',
25 'public/js/bindings/', 25 'public/js/bindings/',
26 ], 26 ],
27 }, 27 },
28 }], 28 }],
29 ['OS=="win"', { 29 ['OS=="win"', {
30 'variables': { 30 'variables': {
31 'isolate_dependency_tracked': [ 31 'isolate_dependency_tracked': [
32 '<(PRODUCT_DIR)/mojo_system.dll',
33 '<(PRODUCT_DIR)/mojo_test_support.dll', 32 '<(PRODUCT_DIR)/mojo_test_support.dll',
34 ], 33 ],
35 }, 34 },
36 }], 35 }],
37 ['OS=="linux"', { 36 ['OS=="linux"', {
38 'variables': { 37 'variables': {
39 'isolate_dependency_tracked': [ 38 'isolate_dependency_tracked': [
40 '<(PRODUCT_DIR)/lib/libmojo_test_support.so', 39 '<(PRODUCT_DIR)/lib/libmojo_test_support.so',
41 ], 40 ],
42 }, 41 },
43 }], 42 }],
44 ['OS=="mac"', { 43 ['OS=="mac"', {
45 'variables': { 44 'variables': {
46 'isolate_dependency_tracked': [ 45 'isolate_dependency_tracked': [
47 '<(PRODUCT_DIR)/libmojo_test_support.dylib', 46 '<(PRODUCT_DIR)/libmojo_test_support.dylib',
48 ], 47 ],
49 }, 48 },
50 }], 49 }],
51 ], 50 ],
52 } 51 }
OLDNEW
« chrome/chrome.isolate ('K') | « mojo/mojo_apps_js_unittests.isolate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698