Chromium Code Reviews| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 136 'chrome_resources.gyp:chrome_extra_resources', | 136 'chrome_resources.gyp:chrome_extra_resources', |
| 137 'chrome_resources.gyp:chrome_resources', | 137 'chrome_resources.gyp:chrome_resources', |
| 138 'chrome_resources.gyp:chrome_strings', | 138 'chrome_resources.gyp:chrome_strings', |
| 139 'chrome_resources.gyp:theme_resources', | 139 'chrome_resources.gyp:theme_resources', |
| 140 'common/extensions/api/api.gyp:api', | 140 'common/extensions/api/api.gyp:api', |
| 141 '../base/base.gyp:base', | 141 '../base/base.gyp:base', |
| 142 '../content/content.gyp:content_browser', | 142 '../content/content.gyp:content_browser', |
| 143 '../net/net.gyp:http_server', | 143 '../net/net.gyp:http_server', |
| 144 '../net/net.gyp:net', | 144 '../net/net.gyp:net', |
| 145 '../skia/skia.gyp:skia', | 145 '../skia/skia.gyp:skia', |
| 146 # Declaring a dependency on sync because debugger depends on | |
| 147 # browser, which depends on sync. We cannot simply declare a | |
|
Nico
2014/03/07 19:13:00
In what way does debugger depend on browser? Does
maniscalco
2014/03/07 23:44:37
Good question. I've removed/replaced some #includ
| |
| 148 # dependency on browser because that would create a cycle (browser | |
| 149 # already depends on debugger). | |
| 150 '../sync/sync.gyp:sync', | |
| 146 '../third_party/icu/icu.gyp:icui18n', | 151 '../third_party/icu/icu.gyp:icui18n', |
| 147 '../third_party/icu/icu.gyp:icuuc', | 152 '../third_party/icu/icu.gyp:icuuc', |
| 148 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 153 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| 149 '../third_party/libusb/libusb.gyp:libusb', | 154 '../third_party/libusb/libusb.gyp:libusb', |
| 150 ], | 155 ], |
| 151 'include_dirs': [ | 156 'include_dirs': [ |
| 152 '..', | 157 '..', |
| 153 ], | 158 ], |
| 154 'sources': [ | 159 'sources': [ |
| 155 'browser/devtools/adb/android_rsa.cc', | 160 'browser/devtools/adb/android_rsa.cc', |
| (...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1104 'sources': [ | 1109 'sources': [ |
| 1105 'service/cloud_print/print_system_dummy.cc', | 1110 'service/cloud_print/print_system_dummy.cc', |
| 1106 ], | 1111 ], |
| 1107 }], | 1112 }], |
| 1108 ], | 1113 ], |
| 1109 }, | 1114 }, |
| 1110 ], | 1115 ], |
| 1111 }], | 1116 }], |
| 1112 ], # 'conditions' | 1117 ], # 'conditions' |
| 1113 } | 1118 } |
| OLD | NEW |