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 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 'dependencies': [ | 777 'dependencies': [ |
778 'chrome', | 778 'chrome', |
779 '../breakpad/breakpad.gyp:dump_syms', | 779 '../breakpad/breakpad.gyp:dump_syms', |
780 ], | 780 ], |
781 }], | 781 }], |
782 ['linux_strip_reliability_tests==1', { | 782 ['linux_strip_reliability_tests==1', { |
783 'actions': [ | 783 'actions': [ |
784 { | 784 { |
785 'action_name': 'strip_reliability_tests', | 785 'action_name': 'strip_reliability_tests', |
786 'inputs': [ | 786 'inputs': [ |
787 '<(PRODUCT_DIR)/automated_ui_tests', | |
788 '<(PRODUCT_DIR)/reliability_tests', | |
789 '<(PRODUCT_DIR)/_pyautolib.so', | 787 '<(PRODUCT_DIR)/_pyautolib.so', |
790 ], | 788 ], |
791 'outputs': [ | 789 'outputs': [ |
792 '<(PRODUCT_DIR)/strip_reliability_tests.stamp', | 790 '<(PRODUCT_DIR)/strip_reliability_tests.stamp', |
793 ], | 791 ], |
794 'action': ['strip', | 792 'action': ['strip', |
795 '-g', | 793 '-g', |
796 '<@(_inputs)'], | 794 '<@(_inputs)'], |
797 'message': 'Stripping reliability tests', | 795 'message': 'Stripping reliability tests', |
798 }, | 796 }, |
799 ], | 797 ], |
800 'dependencies': [ | |
801 'automated_ui_tests', | |
802 'reliability_tests', | |
803 ], | |
804 }], | 798 }], |
805 ], | 799 ], |
806 }, | 800 }, |
807 { | 801 { |
808 'target_name': 'ipcfuzz', | 802 'target_name': 'ipcfuzz', |
809 'type': 'loadable_module', | 803 'type': 'loadable_module', |
810 'include_dirs': [ | 804 'include_dirs': [ |
811 '..', | 805 '..', |
812 ], | 806 ], |
813 'dependencies': [ | 807 'dependencies': [ |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1192 'sources': [ | 1186 'sources': [ |
1193 'service/cloud_print/print_system_cups.cc', | 1187 'service/cloud_print/print_system_cups.cc', |
1194 ], | 1188 ], |
1195 }], | 1189 }], |
1196 ], | 1190 ], |
1197 }, | 1191 }, |
1198 ], | 1192 ], |
1199 }], | 1193 }], |
1200 ], # 'conditions' | 1194 ], # 'conditions' |
1201 } | 1195 } |
OLD | NEW |