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

Side by Side Diff: chrome/chrome.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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'conditions': [ 5 'conditions': [
6 ['OS=="linux"', { 6 ['OS=="linux"', {
7 'variables': { 7 'variables': {
8 'isolate_dependency_tracked': [ 8 'isolate_dependency_tracked': [
9 '<(PRODUCT_DIR)/libffmpegsumo.so', 9 '<(PRODUCT_DIR)/libffmpegsumo.so',
10 '<(PRODUCT_DIR)/libosmesa.so', 10 '<(PRODUCT_DIR)/libosmesa.so',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 }, 54 },
55 }], 55 }],
56 ['OS=="win"', { 56 ['OS=="win"', {
57 'variables': { 57 'variables': {
58 'isolate_dependency_tracked': [ 58 'isolate_dependency_tracked': [
59 '<(PRODUCT_DIR)/<(version_full).manifest', 59 '<(PRODUCT_DIR)/<(version_full).manifest',
60 '<(PRODUCT_DIR)/chrome.dll', 60 '<(PRODUCT_DIR)/chrome.dll',
61 '<(PRODUCT_DIR)/chrome_elf.dll', 61 '<(PRODUCT_DIR)/chrome_elf.dll',
62 '<(PRODUCT_DIR)/ffmpegsumo.dll', 62 '<(PRODUCT_DIR)/ffmpegsumo.dll',
63 '<(PRODUCT_DIR)/libexif.dll', 63 '<(PRODUCT_DIR)/libexif.dll',
64 '<(PRODUCT_DIR)/nacl64<(EXECUTABLE_SUFFIX)',
65 '<(PRODUCT_DIR)/osmesa.dll', 64 '<(PRODUCT_DIR)/osmesa.dll',
66 ], 65 ],
67 }, 66 },
68 }], 67 }],
68 ['OS=="win" and target_arch=="ia32"', {
69 'variables': {
70 'isolate_dependency_tracked': [
71 '<(PRODUCT_DIR)/nacl64.exe',
M-A Ruel 2014/09/18 15:38:52 You mean 32?
jam 2014/09/18 15:44:44 nacl64.exe is needed with 32 bit builds of Chrome
72 ],
73 },
74 }],
69 ['OS=="win" and component=="static_library"', { 75 ['OS=="win" and component=="static_library"', {
70 'variables': { 76 'variables': {
71 'isolate_dependency_tracked': [ 77 'isolate_dependency_tracked': [
72 '<(PRODUCT_DIR)/chrome_child.dll', 78 '<(PRODUCT_DIR)/chrome_child.dll',
73 ], 79 ],
74 }, 80 },
75 }], 81 }],
76 ], 82 ],
77 'includes': [ 83 'includes': [
78 'angle.isolate', 84 'angle.isolate',
79 ], 85 ],
80 } 86 }
OLDNEW
« build/common.gypi ('K') | « build/common.gypi ('k') | mojo/mojo_apps_js_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698