Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Side by Side Diff: chrome/chrome_tests.gypi

Issue 9274003: GYP infrastructure for App Mode app launcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix make build Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/test/base/app_mode_app_tests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 4161 matching lines...) Expand 10 before | Expand all | Expand 10 after
4172 'test/security_tests/renderer_sandbox_tests_mac.mm', 4172 'test/security_tests/renderer_sandbox_tests_mac.mm',
4173 ], 4173 ],
4174 'include_dirs': [ 4174 'include_dirs': [
4175 '..', 4175 '..',
4176 ], 4176 ],
4177 'link_settings': { 4177 'link_settings': {
4178 'libraries': [ 4178 'libraries': [
4179 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', 4179 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
4180 ], 4180 ],
4181 }, 4181 },
4182 }, 4182 }, # target renderer_sandbox_tests
4183 {
4184 # Tests for Mac app launcher.
4185 'target_name': 'app_mode_app_tests',
4186 'type': 'executable',
4187 'product_name': 'App Mode Loader Tests',
4188 'dependencies': [
4189 '../base/base.gyp:test_support_base',
4190 '../testing/gtest.gyp:gtest',
4191 'app_mode_app_support',
4192 ],
4193 'sources': [
4194 'test/base/app_mode_app_tests.cc',
4195 ],
4196 'include_dirs': [
4197 '..',
4198 ],
4199 'link_settings': {
4200 'libraries': [
4201 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
4202 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
4203 ],
4204 },
4205 }, # target app_mode_app_tests
4183 ], 4206 ],
4184 }], 4207 }],
4185 ['OS!="mac"', { 4208 ['OS!="mac"', {
4186 'targets': [ 4209 'targets': [
4187 { 4210 {
4188 'target_name': 'perf_tests', 4211 'target_name': 'perf_tests',
4189 'type': 'executable', 4212 'type': 'executable',
4190 'dependencies': [ 4213 'dependencies': [
4191 'browser', 4214 'browser',
4192 'chrome_resources.gyp:chrome_resources', 4215 'chrome_resources.gyp:chrome_resources',
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
4606 # Use outputs of this action as inputs for the main target build. 4629 # Use outputs of this action as inputs for the main target build.
4607 # Seems as a misnomer but makes this happy on Linux (scons). 4630 # Seems as a misnomer but makes this happy on Linux (scons).
4608 'process_outputs_as_sources': 1, 4631 'process_outputs_as_sources': 1,
4609 }, 4632 },
4610 ], # 'actions' 4633 ], # 'actions'
4611 }, 4634 },
4612 ] 4635 ]
4613 }], # 'coverage!=0' 4636 }], # 'coverage!=0'
4614 ], # 'conditions' 4637 ], # 'conditions'
4615 } 4638 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/test/base/app_mode_app_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698