OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 | 8 |
9 # Define the common dependencies that contain all the actual | 9 # Define the common dependencies that contain all the actual |
10 # Chromium functionality. This list gets pulled in below by | 10 # Chromium functionality. This list gets pulled in below by |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 ], | 392 ], |
393 }], | 393 }], |
394 ], | 394 ], |
395 }, | 395 }, |
396 { | 396 { |
397 'target_name': 'common_constants', | 397 'target_name': 'common_constants', |
398 'type': '<(library)', | 398 'type': '<(library)', |
399 'dependencies': [ | 399 'dependencies': [ |
400 '../base/base.gyp:base', | 400 '../base/base.gyp:base', |
401 ], | 401 ], |
| 402 'conditions': [ |
| 403 ['OS=="linux"', { |
| 404 'dependencies': ['../build/linux/system.gyp:gtk'], |
| 405 }], |
| 406 ], |
402 'sources': [ | 407 'sources': [ |
403 'common/chrome_constants.cc', | 408 'common/chrome_constants.cc', |
404 'common/chrome_constants.h', | 409 'common/chrome_constants.h', |
405 'common/chrome_paths.cc', | 410 'common/chrome_paths.cc', |
406 'common/chrome_paths.h', | 411 'common/chrome_paths.h', |
407 'common/chrome_paths_internal.h', | 412 'common/chrome_paths_internal.h', |
408 'common/chrome_paths_linux.cc', | 413 'common/chrome_paths_linux.cc', |
409 'common/chrome_paths_mac.mm', | 414 'common/chrome_paths_mac.mm', |
410 'common/chrome_paths_win.cc', | 415 'common/chrome_paths_win.cc', |
411 'common/chrome_switches.cc', | 416 'common/chrome_switches.cc', |
(...skipping 6254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6666 'defines': [ | 6671 'defines': [ |
6667 'POSIX', | 6672 'POSIX', |
6668 ], | 6673 ], |
6669 }], | 6674 }], |
6670 ], | 6675 ], |
6671 }, | 6676 }, |
6672 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 | 6677 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 |
6673 }], | 6678 }], |
6674 ], # 'conditions' | 6679 ], # 'conditions' |
6675 } | 6680 } |
OLD | NEW |