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

Side by Side Diff: apps/shell/app_shell.gyp

Issue 224723022: Add the first app_shell_browsertest test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 '<(DEPTH)/content/content_shell_and_tests.gyp:content_browser_test_suppo rt', 158 '<(DEPTH)/content/content_shell_and_tests.gyp:content_browser_test_suppo rt',
159 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', 159 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content',
160 '<(DEPTH)/testing/gtest.gyp:gtest', 160 '<(DEPTH)/testing/gtest.gyp:gtest',
161 ], 161 ],
162 'defines': [ 162 'defines': [
163 'HAS_OUT_OF_PROC_TEST_RUNNER', 163 'HAS_OUT_OF_PROC_TEST_RUNNER',
164 ], 164 ],
165 'msvs_large_pdb': 1, 165 'msvs_large_pdb': 1,
166 'sources': [ 166 'sources': [
167 # TODO(yoz): Refactor once we have a second test target. 167 # TODO(yoz): Refactor once we have a second test target.
168 '../test/app_shell_test.h', 168 'browser/shell_browsertest.cc',
169 '../test/app_shell_test.cc', 169 'test/app_shell_test.h',
James Cook 2014/04/08 16:03:49 I'm OK with these names and I like that the app_sh
Yoyo Zhou 2014/04/08 21:55:21 Ok, will just call them that.
170 '../test/apps_test_launcher_delegate.cc', 170 'test/app_shell_test.cc',
171 '../test/apps_test_launcher_delegate.h', 171 'test/app_shell_test_launcher_delegate.cc',
172 '../test/apps_tests_main.cc', 172 'test/app_shell_test_launcher_delegate.h',
173 'test/app_shell_tests_main.cc',
173 ], 174 ],
174 }, 175 },
175 ], # targets 176 ], # targets
176 } 177 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698