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

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

Issue 2281783002: Changes client_token to be client_auth_token. (Closed)
Patch Set: Created 4 years, 3 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 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("//chrome/version.gni") 5 import("//chrome/version.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("common") { 8 component("common") {
9 output_name = "blimp_common" 9 output_name = "blimp_common"
10 sources = [ 10 sources = [
11 "blimp_common_export.h", 11 "blimp_common_export.h",
12 "blob_cache/blob_cache.h", 12 "blob_cache/blob_cache.h",
13 "blob_cache/id_util.cc", 13 "blob_cache/id_util.cc",
14 "blob_cache/id_util.h", 14 "blob_cache/id_util.h",
15 "blob_cache/in_memory_blob_cache.cc", 15 "blob_cache/in_memory_blob_cache.cc",
16 "blob_cache/in_memory_blob_cache.h", 16 "blob_cache/in_memory_blob_cache.h",
17 "compositor/blimp_task_graph_runner.cc", 17 "compositor/blimp_task_graph_runner.cc",
18 "compositor/blimp_task_graph_runner.h", 18 "compositor/blimp_task_graph_runner.h",
19 "compositor/reference_tracker.cc", 19 "compositor/reference_tracker.cc",
20 "compositor/reference_tracker.h", 20 "compositor/reference_tracker.h",
21 "create_blimp_message.cc", 21 "create_blimp_message.cc",
22 "create_blimp_message.h", 22 "create_blimp_message.h",
23 "get_client_token.cc", 23 "get_client_auth_token.cc",
24 "get_client_token.h", 24 "get_client_auth_token.h",
25 "logging.cc", 25 "logging.cc",
26 "logging.h", 26 "logging.h",
27 "switches.cc", 27 "switches.cc",
28 "switches.h", 28 "switches.h",
29 ] 29 ]
30 30
31 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ] 31 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ]
32 32
33 deps = [ 33 deps = [
34 "//base", 34 "//base",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 "//crypto", 80 "//crypto",
81 "//testing/gmock", 81 "//testing/gmock",
82 "//testing/gtest", 82 "//testing/gtest",
83 ] 83 ]
84 } 84 }
85 85
86 process_version("protocol_version") { 86 process_version("protocol_version") {
87 template_file = "protocol_version.h.version" 87 template_file = "protocol_version.h.version"
88 output = "$target_gen_dir/protocol_version.h" 88 output = "$target_gen_dir/protocol_version.h"
89 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698