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 'pyautolib_sources': [ | 6 'pyautolib_sources': [ |
7 'app/chrome_command_ids.h', | 7 'app/chrome_command_ids.h', |
8 'app/chrome_dll_resource.h', | 8 'app/chrome_dll_resource.h', |
9 'common/automation_constants.h', | 9 'common/automation_constants.h', |
10 'common/pref_names.cc', | 10 'common/pref_names.cc', |
(...skipping 4160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4171 'test/security_tests/renderer_sandbox_tests_mac.mm', | 4171 'test/security_tests/renderer_sandbox_tests_mac.mm', |
4172 ], | 4172 ], |
4173 'include_dirs': [ | 4173 'include_dirs': [ |
4174 '..', | 4174 '..', |
4175 ], | 4175 ], |
4176 'link_settings': { | 4176 'link_settings': { |
4177 'libraries': [ | 4177 'libraries': [ |
4178 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', | 4178 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', |
4179 ], | 4179 ], |
4180 }, | 4180 }, |
4181 }, | 4181 }, # target renderer_sandbox_tests |
| 4182 { |
| 4183 # Tests for Mac app launcher. |
| 4184 'target_name': 'app_mode_app_tests', |
| 4185 'type': 'executable', |
| 4186 'product_name': 'App Mode Loader Tests', |
| 4187 'dependencies': [ |
| 4188 '../base/base.gyp:test_support_base', |
| 4189 '../testing/gtest.gyp:gtest', |
| 4190 'app_mode_app_support', |
| 4191 ], |
| 4192 'sources': [ |
| 4193 'test/base/app_mode_app_tests.cc', |
| 4194 ], |
| 4195 'include_dirs': [ |
| 4196 '..', |
| 4197 ], |
| 4198 'link_settings': { |
| 4199 'libraries': [ |
| 4200 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 4201 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 4202 ], |
| 4203 }, |
| 4204 }, # target app_mode_app_tests |
4182 ], | 4205 ], |
4183 }], | 4206 }], |
4184 ['OS!="mac"', { | 4207 ['OS!="mac"', { |
4185 'targets': [ | 4208 'targets': [ |
4186 { | 4209 { |
4187 'target_name': 'perf_tests', | 4210 'target_name': 'perf_tests', |
4188 'type': 'executable', | 4211 'type': 'executable', |
4189 'dependencies': [ | 4212 'dependencies': [ |
4190 'browser', | 4213 'browser', |
4191 'chrome_resources.gyp:chrome_resources', | 4214 'chrome_resources.gyp:chrome_resources', |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4605 # Use outputs of this action as inputs for the main target build. | 4628 # Use outputs of this action as inputs for the main target build. |
4606 # Seems as a misnomer but makes this happy on Linux (scons). | 4629 # Seems as a misnomer but makes this happy on Linux (scons). |
4607 'process_outputs_as_sources': 1, | 4630 'process_outputs_as_sources': 1, |
4608 }, | 4631 }, |
4609 ], # 'actions' | 4632 ], # 'actions' |
4610 }, | 4633 }, |
4611 ] | 4634 ] |
4612 }], # 'coverage!=0' | 4635 }], # 'coverage!=0' |
4613 ], # 'conditions' | 4636 ], # 'conditions' |
4614 } | 4637 } |
OLD | NEW |