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

Side by Side Diff: chrome/chrome.gyp

Issue 187813008: Add PGO targets to Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: It almost works ! Created 6 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) 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 '../build/util/version.gypi', 93 '../build/util/version.gypi',
94 '../build/win_precompile.gypi', 94 '../build/win_precompile.gypi',
95 'chrome_browser.gypi', 95 'chrome_browser.gypi',
96 'chrome_browser_ui.gypi', 96 'chrome_browser_ui.gypi',
97 'chrome_common.gypi', 97 'chrome_common.gypi',
98 'chrome_installer_util.gypi', 98 'chrome_installer_util.gypi',
99 '../components/nacl/nacl_defines.gypi', 99 '../components/nacl/nacl_defines.gypi',
100 ], 100 ],
101 'conditions': [ 101 'conditions': [
102 ['OS!="ios"', { 102 ['OS!="ios"', {
103 'conditions': [
104 ['chrome_pgo!=1', {
105 'variables': {
106 'chrome_dll_target_name': 'chrome_dll',
107 'chrome_main_dll_target_name': 'chrome_main_dll',
108 'chrome_main_dll_product_name': 'chrome',
109 'chrome_child_dll_target_name': 'chrome_child_dll',
110 'chrome_child_dll_product_name': 'chrome_child',
111 },
112 'includes': [
113 'chrome_dll.gypi',
114 ],
115 }, {
116 'includes': [
117 'chrome_pgo.gypi',
118 ],
119 }],
120 ],
103 'includes': [ 121 'includes': [
104 'chrome_browser_extensions.gypi', 122 'chrome_browser_extensions.gypi',
105 'chrome_dll.gypi',
106 'chrome_exe.gypi', 123 'chrome_exe.gypi',
107 'chrome_installer.gypi', 124 'chrome_installer.gypi',
108 'chrome_renderer.gypi', 125 'chrome_renderer.gypi',
109 'chrome_tests.gypi', 126 'chrome_tests.gypi',
110 'chrome_tests_unit.gypi', 127 'chrome_tests_unit.gypi',
111 'policy_templates.gypi', 128 'policy_templates.gypi',
112 '../apps/apps.gypi', 129 '../apps/apps.gypi',
113 ], 130 ],
114 'targets': [ 131 'targets': [
115 { 132 {
(...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after
1110 'sources': [ 1127 'sources': [
1111 'service/cloud_print/print_system_dummy.cc', 1128 'service/cloud_print/print_system_dummy.cc',
1112 ], 1129 ],
1113 }], 1130 }],
1114 ], 1131 ],
1115 }, 1132 },
1116 ], 1133 ],
1117 }], 1134 }],
1118 ], # 'conditions' 1135 ], # 'conditions'
1119 } 1136 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698