| 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 'variables': { | 9 'variables': { |
| 10 'version_py_path': 'tools/build/version.py', | 10 'version_py_path': 'tools/build/version.py', |
| (...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 'common/platform_util_mac.mm', | 552 'common/platform_util_mac.mm', |
| 553 'common/platform_util_win.cc', | 553 'common/platform_util_win.cc', |
| 554 'common/plugin_carbon_interpose_constants_mac.h', | 554 'common/plugin_carbon_interpose_constants_mac.h', |
| 555 'common/plugin_carbon_interpose_constants_mac.cc', | 555 'common/plugin_carbon_interpose_constants_mac.cc', |
| 556 'common/plugin_messages.h', | 556 'common/plugin_messages.h', |
| 557 'common/plugin_messages_internal.h', | 557 'common/plugin_messages_internal.h', |
| 558 'common/pref_member.cc', | 558 'common/pref_member.cc', |
| 559 'common/pref_member.h', | 559 'common/pref_member.h', |
| 560 'common/pref_service.cc', | 560 'common/pref_service.cc', |
| 561 'common/pref_service.h', | 561 'common/pref_service.h', |
| 562 'common/process_watcher_mac.cc', |
| 562 'common/process_watcher_posix.cc', | 563 'common/process_watcher_posix.cc', |
| 563 'common/process_watcher_win.cc', | 564 'common/process_watcher_win.cc', |
| 564 'common/process_watcher.h', | 565 'common/process_watcher.h', |
| 565 'common/property_bag.cc', | 566 'common/property_bag.cc', |
| 566 'common/property_bag.h', | 567 'common/property_bag.h', |
| 567 'common/ref_counted_util.h', | 568 'common/ref_counted_util.h', |
| 568 'common/render_messages.h', | 569 'common/render_messages.h', |
| 569 'common/render_messages_internal.h', | 570 'common/render_messages_internal.h', |
| 570 'common/renderer_preferences.h', | 571 'common/renderer_preferences.h', |
| 571 'common/resource_dispatcher.cc', | 572 'common/resource_dispatcher.cc', |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 '-lXrender', | 643 '-lXrender', |
| 643 '-lXext', | 644 '-lXext', |
| 644 ], | 645 ], |
| 645 }, | 646 }, |
| 646 },], | 647 },], |
| 647 ['OS=="linux" and selinux==1', { | 648 ['OS=="linux" and selinux==1', { |
| 648 'dependencies': [ | 649 'dependencies': [ |
| 649 '../build/linux/system.gyp:selinux', | 650 '../build/linux/system.gyp:selinux', |
| 650 ], | 651 ], |
| 651 }], | 652 }], |
| 653 ['OS=="mac"', { |
| 654 'sources!': [ |
| 655 'common/process_watcher_posix.cc', |
| 656 ], |
| 657 }], |
| 652 ['OS=="win"', { | 658 ['OS=="win"', { |
| 653 'include_dirs': [ | 659 'include_dirs': [ |
| 654 'third_party/wtl/include', | 660 'third_party/wtl/include', |
| 655 ], | 661 ], |
| 656 }, { # else: OS != "win" | 662 }, { # else: OS != "win" |
| 657 'sources!': [ | 663 'sources!': [ |
| 658 'common/hi_res_timer_manager.cc', | 664 'common/hi_res_timer_manager.cc', |
| 659 'common/hi_res_timer_manager.h', | 665 'common/hi_res_timer_manager.h', |
| 660 'common/temp_scaffolding_stubs.h', | 666 'common/temp_scaffolding_stubs.h', |
| 661 ], | 667 ], |
| (...skipping 2051 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2713 }], # targets | 2719 }], # targets |
| 2714 }], # OS=="linux" or OS=="freebsd" | 2720 }], # OS=="linux" or OS=="freebsd" |
| 2715 ], # 'conditions' | 2721 ], # 'conditions' |
| 2716 } | 2722 } |
| 2717 | 2723 |
| 2718 # Local Variables: | 2724 # Local Variables: |
| 2719 # tab-width:2 | 2725 # tab-width:2 |
| 2720 # indent-tabs-mode:nil | 2726 # indent-tabs-mode:nil |
| 2721 # End: | 2727 # End: |
| 2722 # vim: set expandtab tabstop=2 shiftwidth=2: | 2728 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |