| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 ], | 297 ], |
| 298 'sources': [ | 298 'sources': [ |
| 299 'utility/chrome_content_utility_client.cc', | 299 'utility/chrome_content_utility_client.cc', |
| 300 'utility/chrome_content_utility_client.h', | 300 'utility/chrome_content_utility_client.h', |
| 301 'utility/extensions/unpacker.cc', | 301 'utility/extensions/unpacker.cc', |
| 302 'utility/extensions/unpacker.h', | 302 'utility/extensions/unpacker.h', |
| 303 'utility/itunes_pref_parser_win.cc', | 303 'utility/itunes_pref_parser_win.cc', |
| 304 'utility/itunes_pref_parser_win.h', | 304 'utility/itunes_pref_parser_win.h', |
| 305 'utility/profile_import_handler.cc', | 305 'utility/profile_import_handler.cc', |
| 306 'utility/profile_import_handler.h', | 306 'utility/profile_import_handler.h', |
| 307 'utility/web_resource_unpacker.cc', |
| 308 'utility/web_resource_unpacker.h', |
| 307 ], | 309 ], |
| 308 'include_dirs': [ | 310 'include_dirs': [ |
| 309 '..', | 311 '..', |
| 310 ], | 312 ], |
| 311 'conditions': [ | 313 'conditions': [ |
| 312 ['toolkit_uses_gtk == 1', { | 314 ['toolkit_uses_gtk == 1', { |
| 313 'dependencies': [ | 315 'dependencies': [ |
| 314 '../build/linux/system.gyp:gtk', | 316 '../build/linux/system.gyp:gtk', |
| 315 ], | 317 ], |
| 316 }], | 318 }], |
| (...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1186 ], # 'targets' | 1188 ], # 'targets' |
| 1187 'includes': [ | 1189 'includes': [ |
| 1188 'chrome_android.gypi', | 1190 'chrome_android.gypi', |
| 1189 ]}, # 'includes' | 1191 ]}, # 'includes' |
| 1190 ], # OS=="android" | 1192 ], # OS=="android" |
| 1191 ['configuration_policy==1 and OS!="android"', { | 1193 ['configuration_policy==1 and OS!="android"', { |
| 1192 'includes': [ 'policy.gypi', ], | 1194 'includes': [ 'policy.gypi', ], |
| 1193 }], | 1195 }], |
| 1194 ], # 'conditions' | 1196 ], # 'conditions' |
| 1195 } | 1197 } |
| OLD | NEW |