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

Side by Side Diff: BUILD.gn

Issue 339263002: Add Linux breakpad targets and gtest_main to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | breakpad/BUILD.gn » ('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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 "//ui/resources", 94 "//ui/resources",
95 "//ui/snapshot", 95 "//ui/snapshot",
96 "//ui/strings", 96 "//ui/strings",
97 "//ui/surface", 97 "//ui/surface",
98 "//url", 98 "//url",
99 "//v8:v8", 99 "//v8:v8",
100 "//webkit/browser:storage", 100 "//webkit/browser:storage",
101 "//webkit/child", 101 "//webkit/child",
102 ] 102 ]
103 103
104 if (!is_win) {
105 deps += [ "//breakpad:symupload" ]
106 }
107
104 if (is_linux) { 108 if (is_linux) {
105 deps += [ 109 deps += [
106 "//dbus", 110 "//dbus",
107 "//third_party/fontconfig", 111 "//third_party/fontconfig",
108 "//third_party/freetype2", 112 "//third_party/freetype2",
109 ] 113 ]
110 } 114 }
111 115
112 if (is_win) { 116 if (is_win) {
113 deps += [ 117 deps += [
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 ] 160 ]
157 } 161 }
158 162
159 if (use_ozone) { 163 if (use_ozone) {
160 deps += [ 164 deps += [
161 "//ui/events/ozone:events_ozone", 165 "//ui/events/ozone:events_ozone",
162 "//ui/events/ozone:events_ozone_evdev", 166 "//ui/events/ozone:events_ozone_evdev",
163 ] 167 ]
164 } 168 }
165 } 169 }
OLDNEW
« no previous file with comments | « no previous file | breakpad/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698