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

Side by Side Diff: blimp/common/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: Adds documentation 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
« no previous file with comments | « blimp/client/session/assignment_source_unittest.cc ('k') | blimp/common/get_client_token.h » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 component("common") { 7 component("common") {
8 output_name = "blimp_common" 8 output_name = "blimp_common"
9 sources = [ 9 sources = [
10 "blimp_common_export.h", 10 "blimp_common_export.h",
11 "blob_cache/blob_cache.h", 11 "blob_cache/blob_cache.h",
12 "blob_cache/id_util.cc", 12 "blob_cache/id_util.cc",
13 "blob_cache/id_util.h", 13 "blob_cache/id_util.h",
14 "blob_cache/in_memory_blob_cache.cc", 14 "blob_cache/in_memory_blob_cache.cc",
15 "blob_cache/in_memory_blob_cache.h", 15 "blob_cache/in_memory_blob_cache.h",
16 "compositor/blimp_task_graph_runner.cc", 16 "compositor/blimp_task_graph_runner.cc",
17 "compositor/blimp_task_graph_runner.h", 17 "compositor/blimp_task_graph_runner.h",
18 "create_blimp_message.cc", 18 "create_blimp_message.cc",
19 "create_blimp_message.h", 19 "create_blimp_message.h",
20 "get_client_token.cc",
21 "get_client_token.h",
20 "logging.cc", 22 "logging.cc",
21 "logging.h", 23 "logging.h",
22 "protocol_version.h", 24 "protocol_version.h",
25 "switches.cc",
26 "switches.h",
23 ] 27 ]
24 28
25 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ] 29 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ]
26 30
27 deps = [ 31 deps = [
28 "//base", 32 "//base",
29 "//blimp/common/proto", 33 "//blimp/common/proto",
30 "//cc", 34 "//cc",
31 "//crypto", 35 "//crypto",
32 ] 36 ]
(...skipping 30 matching lines...) Expand all
63 deps = [ 67 deps = [
64 ":common", 68 ":common",
65 "//base", 69 "//base",
66 "//blimp/common/proto", 70 "//blimp/common/proto",
67 "//blimp/net:test_support", 71 "//blimp/net:test_support",
68 "//crypto", 72 "//crypto",
69 "//testing/gmock", 73 "//testing/gmock",
70 "//testing/gtest", 74 "//testing/gtest",
71 ] 75 ]
72 } 76 }
OLDNEW
« no previous file with comments | « blimp/client/session/assignment_source_unittest.cc ('k') | blimp/common/get_client_token.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698