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

Side by Side Diff: content/app/BUILD.gn

Issue 419613002: Fix GN linking issues. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | « base/BUILD.gn ('k') | content/browser/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 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("app") { 5 source_set("app") {
6 sources = [ 6 sources = [
7 "android/app_jni_registrar.cc", 7 "android/app_jni_registrar.cc",
8 "android/app_jni_registrar.h", 8 "android/app_jni_registrar.h",
9 "android/child_process_service.cc", 9 "android/child_process_service.cc",
10 "android/child_process_service.h", 10 "android/child_process_service.h",
(...skipping 10 matching lines...) Expand all
21 configs += [ "//content:content_implementation" ] 21 configs += [ "//content:content_implementation" ]
22 22
23 deps = [ 23 deps = [
24 "//base", 24 "//base",
25 "//base:i18n", 25 "//base:i18n",
26 # This is needed by app/content_main_runner.cc 26 # This is needed by app/content_main_runner.cc
27 # TODO(brettw) this shouldn't be here, only final executables should be 27 # TODO(brettw) this shouldn't be here, only final executables should be
28 # picking the allocator. 28 # picking the allocator.
29 "//base/allocator", 29 "//base/allocator",
30 "//content:export", 30 "//content:export",
31 "//content/public/common",
31 "//crypto", 32 "//crypto",
32 "//ui/base", 33 "//ui/base",
33 "//ui/gfx", 34 "//ui/gfx",
34 "//ui/gfx/geometry", 35 "//ui/gfx/geometry",
35 ] 36 ]
36 37
37 if (is_win) { 38 if (is_win) {
38 deps += [ "//sandbox" ] 39 deps += [ "//sandbox" ]
39 } else if (is_android) { 40 } else if (is_android) {
40 sources -= [ "content_main.cc" ] 41 sources -= [ "content_main.cc" ]
(...skipping 12 matching lines...) Expand all
53 ] 54 ]
54 } else { 55 } else {
55 deps += [ 56 deps += [
56 "//mojo/environment:chromium", 57 "//mojo/environment:chromium",
57 "//mojo/public/interfaces/service_provider", 58 "//mojo/public/interfaces/service_provider",
58 "//mojo/service_manager", 59 "//mojo/service_manager",
59 "//mojo/system", 60 "//mojo/system",
60 ] 61 ]
61 } 62 }
62 } 63 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | content/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698