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 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
633 'export_dependent_settings': [ | 633 'export_dependent_settings': [ |
634 '../third_party/sqlite/sqlite.gyp:sqlite', | 634 '../third_party/sqlite/sqlite.gyp:sqlite', |
635 ], | 635 ], |
636 'link_settings': { | 636 'link_settings': { |
637 'libraries': [ | 637 'libraries': [ |
638 '-lX11', | 638 '-lX11', |
639 '-lXrender', | 639 '-lXrender', |
640 '-lXext', | 640 '-lXext', |
641 ], | 641 ], |
642 }, | 642 }, |
643 'sources!': [ | |
644 'common/temp_scaffolding_stubs.cc', | |
tony
2009/09/25 01:11:39
linux views?
| |
645 'common/temp_scaffolding_stubs.h', | |
646 ], | |
643 }, { # else: 'OS!="linux"' | 647 }, { # else: 'OS!="linux"' |
644 'sources!': [ | 648 'sources!': [ |
645 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', | 649 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', |
646 ], | 650 ], |
647 }], | 651 }], |
648 ['OS=="linux" and selinux==1', { | 652 ['OS=="linux" and selinux==1', { |
649 'dependencies': [ | 653 'dependencies': [ |
650 '../build/linux/system.gyp:selinux', | 654 '../build/linux/system.gyp:selinux', |
651 ], | 655 ], |
652 }], | 656 }], |
(...skipping 6008 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
6661 'defines': [ | 6665 'defines': [ |
6662 'POSIX', | 6666 'POSIX', |
6663 ], | 6667 ], |
6664 }], | 6668 }], |
6665 ], | 6669 ], |
6666 }, | 6670 }, |
6667 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 | 6671 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 |
6668 }], | 6672 }], |
6669 ], # 'conditions' | 6673 ], # 'conditions' |
6670 } | 6674 } |
OLD | NEW |