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

Side by Side Diff: blimp/client/core/session/BUILD.gn

Issue 2376573002: Cleanup blimp/client/core code organization. (Closed)
Patch Set: merged origin/master Created 4 years, 2 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/android/rules.gni") 7 import("//build/config/android/rules.gni")
8 } 8 }
9 9
10 source_set("session") { 10 source_set("session") {
(...skipping 20 matching lines...) Expand all
31 "//base", 31 "//base",
32 "//blimp/client/public:public_headers", 32 "//blimp/client/public:public_headers",
33 "//blimp/net", 33 "//blimp/net",
34 "//components/safe_json", 34 "//components/safe_json",
35 "//google_apis", 35 "//google_apis",
36 "//net", 36 "//net",
37 "//url", 37 "//url",
38 ] 38 ]
39 39
40 deps = [ 40 deps = [
41 "//blimp/client/core:switches", 41 "//blimp/client/core/switches",
42 "//blimp/common", 42 "//blimp/common",
43 ] 43 ]
44 } 44 }
45 45
46 source_set("unit_tests") { 46 source_set("unit_tests") {
47 visibility = [ "//blimp/client/core:unit_tests" ] 47 visibility = [ "//blimp/client/core:unit_tests" ]
48 48
49 testonly = true 49 testonly = true
50 50
51 sources = [ 51 sources = [
(...skipping 10 matching lines...) Expand all
62 ] 62 ]
63 63
64 data = [] 64 data = []
65 65
66 # TODO(dtrainor): Fix the test harness to allow this to run on Android. 66 # TODO(dtrainor): Fix the test harness to allow this to run on Android.
67 # See crbug.com/588240. 67 # See crbug.com/588240.
68 if (is_linux) { 68 if (is_linux) {
69 sources += [ "assignment_source_unittest.cc" ] 69 sources += [ "assignment_source_unittest.cc" ]
70 70
71 deps += [ 71 deps += [
72 "//blimp/client/core:switches", 72 "//blimp/client/core/switches",
73 "//blimp/common", 73 "//blimp/common",
74 "//blimp/common:test_support", 74 "//blimp/common:test_support",
75 "//components/safe_json:test_support", 75 "//components/safe_json:test_support",
76 "//net:test_support", 76 "//net:test_support",
77 "//url", 77 "//url",
78 ] 78 ]
79 79
80 data += [ 80 data += [
81 "test_selfsigned_cert.pem", 81 "test_selfsigned_cert.pem",
82 "//blimp/test/data/test_client_token", 82 "//blimp/test/data/test_client_token",
83 ] 83 ]
84 } 84 }
85 } 85 }
OLDNEW
« no previous file with comments | « blimp/client/core/dummy_blimp_client_context.cc ('k') | blimp/client/core/session/assignment_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698