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

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: Generate manifest via gyp 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',
grt (UTC plus 2) 2013/11/06 19:07:29 remove this as per comment in chrome_elf.gypi
Cait (Slow) 2013/11/06 21:18:06 Done.
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 995 matching lines...) Expand 10 before | Expand all | Expand 10 after
1129 'sources': [ 1130 'sources': [
1130 'service/cloud_print/print_system_cups.cc', 1131 'service/cloud_print/print_system_cups.cc',
1131 ], 1132 ],
1132 }], 1133 }],
1133 ], 1134 ],
1134 }, 1135 },
1135 ], 1136 ],
1136 }], 1137 }],
1137 ], # 'conditions' 1138 ], # 'conditions'
1138 } 1139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698