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

Side by Side Diff: chrome/chrome.isolate

Issue 1773233002: Media Galleries Partial Deprecation: Remove image metadata & libexif. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove another test Created 4 years, 9 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 'files': [ 8 'files': [
9 '<(PRODUCT_DIR)/libosmesa.so', 9 '<(PRODUCT_DIR)/libosmesa.so',
10 ], 10 ],
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 }], 62 }],
63 ['OS=="mac"', { 63 ['OS=="mac"', {
64 'variables': { 64 'variables': {
65 'command': [ 65 'command': [
66 '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/MacOS/<(mac_product_n ame)', 66 '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/MacOS/<(mac_product_n ame)',
67 ], 67 ],
68 'files': [ 68 'files': [
69 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', 69 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
70 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app/', 70 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app/',
71 '<(PRODUCT_DIR)/<(mac_product_name).app/', 71 '<(PRODUCT_DIR)/<(mac_product_name).app/',
72 '<(PRODUCT_DIR)/exif.so',
73 ], 72 ],
74 }, 73 },
75 }], 74 }],
76 ['OS=="mac" and asan==1 and fastbuild==0', { 75 ['OS=="mac" and asan==1 and fastbuild==0', {
77 'variables': { 76 'variables': {
78 'files': [ 77 'files': [
79 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework.dSYM/', 78 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework.dSYM/',
80 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app.dSYM/', 79 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app.dSYM/',
81 '<(PRODUCT_DIR)/<(mac_product_name).app.dSYM/', 80 '<(PRODUCT_DIR)/<(mac_product_name).app.dSYM/',
82 '<(PRODUCT_DIR)/exif.so.dSYM/',
83 ], 81 ],
84 }, 82 },
85 }], 83 }],
86 ['OS=="win"', { 84 ['OS=="win"', {
87 'variables': { 85 'variables': {
88 'files': [ 86 'files': [
89 '<(PRODUCT_DIR)/<(version_full).manifest', 87 '<(PRODUCT_DIR)/<(version_full).manifest',
90 '<(PRODUCT_DIR)/chrome_200_percent.pak', 88 '<(PRODUCT_DIR)/chrome_200_percent.pak',
91 '<(PRODUCT_DIR)/chrome.dll', 89 '<(PRODUCT_DIR)/chrome.dll',
92 '<(PRODUCT_DIR)/chrome_elf.dll', 90 '<(PRODUCT_DIR)/chrome_elf.dll',
93 '<(PRODUCT_DIR)/libexif.dll',
94 '<(PRODUCT_DIR)/osmesa.dll', 91 '<(PRODUCT_DIR)/osmesa.dll',
95 ], 92 ],
96 }, 93 },
97 }], 94 }],
98 ['OS=="win" and target_arch=="ia32"', { 95 ['OS=="win" and target_arch=="ia32"', {
99 'variables': { 96 'variables': {
100 'files': [ 97 'files': [
101 '<(PRODUCT_DIR)/wow_helper.exe', 98 '<(PRODUCT_DIR)/wow_helper.exe',
102 ], 99 ],
103 }, 100 },
(...skipping 20 matching lines...) Expand all
124 ], 121 ],
125 }, 122 },
126 }], 123 }],
127 ], 124 ],
128 'includes': [ 125 'includes': [
129 '../base/base.isolate', 126 '../base/base.isolate',
130 '../gin/v8.isolate', 127 '../gin/v8.isolate',
131 '../ui/gl/gl.isolate', 128 '../ui/gl/gl.isolate',
132 ], 129 ],
133 } 130 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698