OLD | NEW |
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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 # By using an include, we keep everything in a single xcodeproj file. | 102 # By using an include, we keep everything in a single xcodeproj file. |
103 # Note on Win64 targets: targets that end with win64 be used | 103 # Note on Win64 targets: targets that end with win64 be used |
104 # on 64-bit Windows only. Targets that end with nacl_win64 should be used | 104 # on 64-bit Windows only. Targets that end with nacl_win64 should be used |
105 # by Native Client only. | 105 # by Native Client only. |
106 # NOTE: Most new includes should go in the OS!="ios" condition below. | 106 # NOTE: Most new includes should go in the OS!="ios" condition below. |
107 '../build/win_precompile.gypi', | 107 '../build/win_precompile.gypi', |
108 'chrome_browser.gypi', | 108 'chrome_browser.gypi', |
109 'chrome_browser_ui.gypi', | 109 'chrome_browser_ui.gypi', |
110 'chrome_common.gypi', | 110 'chrome_common.gypi', |
111 'chrome_installer_util.gypi', | 111 'chrome_installer_util.gypi', |
112 'chrome_tests_unit.gypi', | |
113 'version.gypi', | 112 'version.gypi', |
114 '../components/nacl/nacl_defines.gypi', | 113 '../components/nacl/nacl_defines.gypi', |
115 ], | 114 ], |
116 'conditions': [ | 115 'conditions': [ |
117 ['OS!="ios"', { | 116 ['OS!="ios"', { |
118 'includes': [ | 117 'includes': [ |
119 'app/policy/policy_templates.gypi', | 118 'app/policy/policy_templates.gypi', |
120 'chrome_browser_extensions.gypi', | 119 'chrome_browser_extensions.gypi', |
121 'chrome_dll.gypi', | 120 'chrome_dll.gypi', |
122 'chrome_exe.gypi', | 121 'chrome_exe.gypi', |
123 'chrome_installer.gypi', | 122 'chrome_installer.gypi', |
124 'chrome_renderer.gypi', | 123 'chrome_renderer.gypi', |
125 'chrome_tests.gypi', | 124 'chrome_tests.gypi', |
| 125 'chrome_tests_unit.gypi', |
126 '../apps/apps.gypi', | 126 '../apps/apps.gypi', |
127 ], | 127 ], |
128 'targets': [ | 128 'targets': [ |
129 { | 129 { |
130 'target_name': 'default_extensions', | 130 'target_name': 'default_extensions', |
131 'type': 'none', | 131 'type': 'none', |
132 'conditions': [ | 132 'conditions': [ |
133 ['OS=="win"', { | 133 ['OS=="win"', { |
134 'copies': [ | 134 'copies': [ |
135 { | 135 { |
(...skipping 986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1122 'sources': [ | 1122 'sources': [ |
1123 'service/cloud_print/print_system_dummy.cc', | 1123 'service/cloud_print/print_system_dummy.cc', |
1124 ], | 1124 ], |
1125 }], | 1125 }], |
1126 ], | 1126 ], |
1127 }, | 1127 }, |
1128 ], | 1128 ], |
1129 }], | 1129 }], |
1130 ], # 'conditions' | 1130 ], # 'conditions' |
1131 } | 1131 } |
OLD | NEW |