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

Side by Side Diff: blimp/test/BUILD.gn

Issue 1958033003: Allows client to access auth token from command line specified file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed kmarshall's comments Created 4 years, 7 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 test("engine_browsertests") { 7 test("engine_browsertests") {
8 sources = [ 8 sources = [
9 "browser_tests/blimp_browser_test.cc", 9 "browser_tests/blimp_browser_test.cc",
10 "browser_tests/blimp_browser_test.h", 10 "browser_tests/blimp_browser_test.h",
11 "browser_tests/blimp_test_launcher.cc", 11 "browser_tests/blimp_test_launcher.cc",
12 "browser_tests/engine_browsertest.cc", 12 "browser_tests/engine_browsertest.cc",
13 ] 13 ]
14 14
15 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] 15 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
16 16
17 deps = [ 17 deps = [
18 "//base", 18 "//base",
19 "//blimp/client:feature", 19 "//blimp/client:feature",
20 "//blimp/client:session", 20 "//blimp/client:session",
21 "//blimp/client:switches", 21 "//blimp/client:switches",
22 "//blimp/client:test_support", 22 "//blimp/client:test_support",
23 "//blimp/common",
24 "//blimp/common:app_switches",
23 "//blimp/engine:app", 25 "//blimp/engine:app",
24 "//blimp/engine:app_config", 26 "//blimp/engine:app_config",
25 "//blimp/engine:app_switches",
26 "//blimp/engine:pak", 27 "//blimp/engine:pak",
27 "//blimp/engine:session", 28 "//blimp/engine:session",
28 "//blimp/engine:test_support", 29 "//blimp/engine:test_support",
29 "//blimp/net", 30 "//blimp/net",
30 "//content/public/app:both", 31 "//content/public/app:both",
31 "//content/test:browsertest_base", 32 "//content/test:browsertest_base",
32 "//content/test:test_support", 33 "//content/test:test_support",
33 "//testing/gmock", 34 "//testing/gmock",
34 "//testing/gtest", 35 "//testing/gtest",
35 ] 36 ]
36 37
37 data = [ 38 data = [
38 "data/test_client_token", 39 "data/test_client_token",
39 ] 40 ]
40 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698