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

Side by Side Diff: chrome/chrome.isolate

Issue 2766673003: Remove checked-in .isolate files. (Closed)
Patch Set: Created 3 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
« no previous file with comments | « chrome/cdb.isolate ('k') | chrome/ct_skps.isolate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4 {
5 'conditions': [
6 ['OS=="linux"', {
7 'variables': {
8 'files': [
9 '<(PRODUCT_DIR)/libosmesa.so',
10 ],
11 },
12 }],
13 ['disable_nacl==0 and OS=="linux"', {
14 'variables': {
15 'files': [
16 '<(PRODUCT_DIR)/nacl_helper<(EXECUTABLE_SUFFIX)',
17 '<(PRODUCT_DIR)/nacl_helper_bootstrap<(EXECUTABLE_SUFFIX)',
18 ]
19 }
20 }],
21 ['disable_nacl==0 and OS=="linux" and (target_arch=="x64" or target_arch=="i a32" or target_arch=="arm")', {
22 'variables': {
23 'files': [
24 '<(PRODUCT_DIR)/nacl_helper_nonsfi<(EXECUTABLE_SUFFIX)',
25 ]
26 }
27 }],
28 ['OS=="linux" or OS=="win"', {
29 'variables': {
30 'command': [
31 '<(PRODUCT_DIR)/chrome<(EXECUTABLE_SUFFIX)',
32 ],
33 'files': [
34 '<(PRODUCT_DIR)/chrome<(EXECUTABLE_SUFFIX)',
35 '<(PRODUCT_DIR)/chrome_100_percent.pak',
36 '<(PRODUCT_DIR)/locales/en-US.pak',
37 '<(PRODUCT_DIR)/locales/fr.pak',
38 '<(PRODUCT_DIR)/resources/extension/',
39 '<(PRODUCT_DIR)/resources.pak',
40 ],
41 },
42 }],
43 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
44 'variables': {
45 'files': [
46 '<(PRODUCT_DIR)/chrome<(EXECUTABLE_SUFFIX).pdb',
47 ],
48 },
49 }],
50 ['disable_nacl==0 and (OS=="win" or (OS=="linux" and target_arch=="x64"))', {
51 'variables': {
52 'files': [
53 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
54 ],
55 },
56 }],
57 ['disable_nacl==0 and OS=="linux" and target_arch=="arm"', {
58 'variables': {
59 'files': [
60 '<(PRODUCT_DIR)/nacl_irt_arm.nexe',
61 ],
62 },
63 }],
64 ['OS=="mac"', {
65 'variables': {
66 'command': [
67 '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/MacOS/<(mac_product_n ame)',
68 ],
69 'files': [
70 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
71 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app/',
72 '<(PRODUCT_DIR)/<(mac_product_name).app/',
73 ],
74 },
75 }],
76 ['OS=="mac" and asan==1 and fastbuild==0', {
77 'variables': {
78 'files': [
79 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework.dSYM/',
80 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app.dSYM/',
81 '<(PRODUCT_DIR)/<(mac_product_name).app.dSYM/',
82 ],
83 },
84 }],
85 ['OS=="win"', {
86 'variables': {
87 'files': [
88 '<(PRODUCT_DIR)/<(version_full).manifest',
89 '<(PRODUCT_DIR)/chrome_200_percent.pak',
90 '<(PRODUCT_DIR)/chrome.dll',
91 '<(PRODUCT_DIR)/chrome_elf.dll',
92 '<(PRODUCT_DIR)/osmesa.dll',
93 ],
94 },
95 }],
96 ['disable_nacl==0 and OS=="win" and target_arch=="ia32"', {
97 'variables': {
98 'files': [
99 '<(PRODUCT_DIR)/nacl64.exe',
100 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe',
101 ],
102 },
103 }],
104 ['OS=="win" and component=="static_library"', {
105 'variables': {
106 'files': [
107 '<(PRODUCT_DIR)/chrome_child.dll',
108 ],
109 },
110 }],
111 ['OS=="win" and component=="static_library" and (fastbuild==0 or fastbuild== 1)', {
112 'variables': {
113 'files': [
114 '<(PRODUCT_DIR)/chrome_child.dll.pdb',
115 ],
116 },
117 }],
118 ['OS=="win" and component=="shared_library" and (fastbuild==0 or fastbuild== 1)', {
119 'variables': {
120 'files': [
121 '<(PRODUCT_DIR)/base.dll.pdb',
122 '<(PRODUCT_DIR)/blink_platform.dll.pdb',
123 '<(PRODUCT_DIR)/blink_web.dll.pdb',
124 '<(PRODUCT_DIR)/content.dll.pdb',
125 '<(PRODUCT_DIR)/modules.dll.pdb',
126 ],
127 },
128 }],
129 ],
130 'includes': [
131 '../base/base.isolate',
132 '../gin/v8.isolate',
133 '../ui/gl/gl.isolate',
134 ],
135 }
OLDNEW
« no previous file with comments | « chrome/cdb.isolate ('k') | chrome/ct_skps.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698