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

Side by Side Diff: chrome/chrome.gyp

Issue 48021: Add targets for page_cycler_tests, perf_tests and startup_tests. Listed... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | « base/base.gyp ('k') | net/net.gyp » ('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) 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 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
(...skipping 1697 matching lines...) Expand 10 before | Expand all | Expand 10 after
1708 'dependencies': [ 1708 'dependencies': [
1709 'test_support_common', 1709 'test_support_common',
1710 'resources', 1710 'resources',
1711 '../skia/skia.gyp:skia', 1711 '../skia/skia.gyp:skia',
1712 '../testing/gtest.gyp:gtest', 1712 '../testing/gtest.gyp:gtest',
1713 ], 1713 ],
1714 'include_dirs': [ 1714 'include_dirs': [
1715 '..', 1715 '..',
1716 ], 1716 ],
1717 'sources': [ 1717 'sources': [
1718 'test/testing_browser_process.h',
1718 'test/ui/npapi_test_helper.cc', 1719 'test/ui/npapi_test_helper.cc',
1719 'test/ui/npapi_test_helper.h', 1720 'test/ui/npapi_test_helper.h',
1720 'test/ui/run_all_unittests.cc', 1721 'test/ui/run_all_unittests.cc',
1721 'test/ui/ui_test.cc', 1722 'test/ui/ui_test.cc',
1722 'test/ui/ui_test.h', 1723 'test/ui/ui_test.h',
1723 'test/ui/ui_test_suite.cc', 1724 'test/ui/ui_test_suite.cc',
1724 'test/ui/ui_test_suite.h', 1725 'test/ui/ui_test_suite.h',
1725 ], 1726 ],
1726 'conditions': [ 1727 'conditions': [
1727 ['OS!="win"', { 1728 ['OS!="win"', {
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
2165 ], 2166 ],
2166 'actions': [ 2167 'actions': [
2167 { 2168 {
2168 'inputs': [], 2169 'inputs': [],
2169 'outputs': [], 2170 'outputs': [],
2170 'action_name': 'package_chrome', 2171 'action_name': 'package_chrome',
2171 'action': ['tools/mac/package_chrome.sh' ], 2172 'action': ['tools/mac/package_chrome.sh' ],
2172 }, 2173 },
2173 ], # 'actions' 2174 ], # 'actions'
2174 }, 2175 },
2175 ]}, # 'targets' 2176 ]
2176 ], # OS=="mac" 2177 }, { # else: OS != "mac"
2178 'targets': [
2179 {
2180 'target_name': 'page_cycler_tests',
2181 'type': 'executable',
2182 'dependencies': [
2183 'resources',
2184 'test_support_ui',
2185 '../base/base.gyp:base',
2186 '../skia/skia.gyp:skia',
2187 '../testing/gtest.gyp:gtest',
2188 ],
2189 'sources': [
2190 'test/page_cycler/page_cycler_test.cc',
2191 'tools/build/win/precompiled.cc',
2192 'tools/build/win/precompiled.h',
2193 ],
2194 'conditions': [
2195 ['OS!="win"', {
2196 'sources!': [
2197 'tools/build/win/precompiled.cc',
2198 'tools/build/win/precompiled.h',
2199 ],
2200 }],
2201 ],
2202 },
2203 {
2204 'target_name': 'perf_tests',
2205 'type': 'executable',
2206 'dependencies': [
2207 'browser',
2208 'common',
2209 'resources',
2210 '../base/base.gyp:base',
2211 '../base/base.gyp:test_support_base',
2212 '../skia/skia.gyp:skia',
2213 '../testing/gtest.gyp:gtest',
2214 ],
2215 'sources': [
2216 'browser/visitedlink_perftest.cc',
2217 'test/perf/perftests.cc',
2218 'test/perf/url_parse_perftest.cc',
2219 ],
2220 'conditions': [
2221 ['OS=="linux"', {
2222 'sources!': [
2223 # TODO(port):
2224 'browser/visitedlink_perftest.cc',
2225 ],
2226 }],
2227 ],
2228 },
2229 {
2230 'target_name': 'startup_tests',
2231 'type': 'executable',
2232 'dependencies': [
2233 'browser',
2234 'common',
2235 'resources',
2236 'test_support_ui',
2237 '../base/base.gyp:base',
2238 '../skia/skia.gyp:skia',
2239 '../testing/gtest.gyp:gtest',
2240 ],
2241 'sources': [
2242 'test/startup/feature_startup_test.cc',
2243 'test/startup/startup_test.cc',
2244 'tools/build/win/precompiled.cc',
2245 'tools/build/win/precompiled.h',
2246 ],
2247 'conditions': [
2248 ['OS!="win"', {
2249 'sources!': [
2250 'test/startup/feature_startup_test.cc',
2251 'tools/build/win/precompiled.cc',
2252 'tools/build/win/precompiled.h',
2253 ],
2254 }],
2255 ],
2256 },
2257 ],
2258 }], # OS!="mac"
2177 ['OS=="win"', 2259 ['OS=="win"',
2178 { 'targets': [ 2260 { 'targets': [
2179 { 2261 {
2180 'target_name': 'views', 2262 'target_name': 'views',
2181 'type': 'static_library', 2263 'type': 'static_library',
2182 'dependencies': [ 2264 'dependencies': [
2183 'common', 2265 'common',
2184 'resources', 2266 'resources',
2185 '../media/media.gyp:media', 2267 '../media/media.gyp:media',
2186 '../skia/skia.gyp:skia', 2268 '../skia/skia.gyp:skia',
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
2427 'Debug': { 2509 'Debug': {
2428 'msvs_precompiled_header': 'tools/build/win/precompiled.h', 2510 'msvs_precompiled_header': 'tools/build/win/precompiled.h',
2429 'msvs_precompiled_source': 'tools/build/win/precompiled.cc', 2511 'msvs_precompiled_source': 'tools/build/win/precompiled.cc',
2430 }, 2512 },
2431 }, 2513 },
2432 }, 2514 },
2433 ]}, # 'targets' 2515 ]}, # 'targets'
2434 ], # OS=="win" 2516 ], # OS=="win"
2435 ], # 'conditions' 2517 ], # 'conditions'
2436 } 2518 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698