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

Side by Side Diff: chrome/chrome.gyp

Issue 53793002: Initial implementation of Chrome Early Loading Framework (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean up Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 'includes': [ 114 'includes': [
115 'app/policy/policy_templates.gypi', 115 'app/policy/policy_templates.gypi',
116 'chrome_browser_extensions.gypi', 116 'chrome_browser_extensions.gypi',
117 'chrome_dll.gypi', 117 'chrome_dll.gypi',
118 'chrome_exe.gypi', 118 'chrome_exe.gypi',
119 'chrome_installer.gypi', 119 'chrome_installer.gypi',
120 'chrome_renderer.gypi', 120 'chrome_renderer.gypi',
121 'chrome_tests.gypi', 121 'chrome_tests.gypi',
122 'nacl.gypi', 122 'nacl.gypi',
123 '../apps/apps.gypi', 123 '../apps/apps.gypi',
124 '../chrome_elf/chrome_elf.gypi',
124 ], 125 ],
125 'targets': [ 126 'targets': [
126 { 127 {
127 'target_name': 'default_extensions', 128 'target_name': 'default_extensions',
128 'type': 'none', 129 'type': 'none',
129 'conditions': [ 130 'conditions': [
130 ['OS=="win"', { 131 ['OS=="win"', {
131 'copies': [ 132 'copies': [
132 { 133 {
133 'destination': '<(PRODUCT_DIR)/extensions', 134 'destination': '<(PRODUCT_DIR)/extensions',
(...skipping 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after
1171 'sources': [ 1172 'sources': [
1172 'service/cloud_print/print_system_cups.cc', 1173 'service/cloud_print/print_system_cups.cc',
1173 ], 1174 ],
1174 }], 1175 }],
1175 ], 1176 ],
1176 }, 1177 },
1177 ], 1178 ],
1178 }], 1179 }],
1179 ], # 'conditions' 1180 ], # 'conditions'
1180 } 1181 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698