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

Side by Side Diff: remoting/base/BUILD.gn

Issue 2788093002: Add missing header files to GN files (3 of N) (Closed)
Patch Set: manual fixes Created 3 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
« no previous file with comments | « net/BUILD.gn ('k') | third_party/boringssl/BUILD.generated_tests.gni » ('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 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 source_set("base") { 5 source_set("base") {
6 sources = [ 6 sources = [
7 "auto_thread.cc", 7 "auto_thread.cc",
8 "auto_thread.h", 8 "auto_thread.h",
9 "auto_thread_task_runner.cc", 9 "auto_thread_task_runner.cc",
10 "auto_thread_task_runner.h", 10 "auto_thread_task_runner.h",
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 "//base", 93 "//base",
94 "//google_apis", 94 "//google_apis",
95 "//net", 95 "//net",
96 ] 96 ]
97 } 97 }
98 98
99 source_set("breakpad") { 99 source_set("breakpad") {
100 sources = [ 100 sources = [
101 "breakpad.h", 101 "breakpad.h",
102 "breakpad_linux.cc", 102 "breakpad_linux.cc",
103 "breakpad_linux.h",
103 "breakpad_mac.mm", 104 "breakpad_mac.mm",
104 "breakpad_win.cc", 105 "breakpad_win.cc",
105 ] 106 ]
106 107
107 configs += [ "//build/config/compiler:wexit_time_destructors" ] 108 configs += [ "//build/config/compiler:wexit_time_destructors" ]
108 109
109 deps = [ 110 deps = [
110 "//base", 111 "//base",
111 ] 112 ]
112 113
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 ] 172 ]
172 173
173 if (is_win || is_mac || is_chromeos) { 174 if (is_win || is_mac || is_chromeos) {
174 deps += [ "//breakpad:client" ] 175 deps += [ "//breakpad:client" ]
175 } 176 }
176 177
177 if (is_win) { 178 if (is_win) {
178 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. 179 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc.
179 } 180 }
180 } 181 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | third_party/boringssl/BUILD.generated_tests.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698