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

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

Issue 623883002: Revert "Move mojo edk into mojo/edk" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « content/DEPS ('k') | content/app/mojo/mojo_init.cc » ('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 content_app_sources = [ 5 content_app_sources = [
6 "android/app_jni_registrar.cc", 6 "android/app_jni_registrar.cc",
7 "android/app_jni_registrar.h", 7 "android/app_jni_registrar.h",
8 "android/child_process_service.cc", 8 "android/child_process_service.cc",
9 "android/child_process_service.h", 9 "android/child_process_service.h",
10 "android/content_main.cc", 10 "android/content_main.cc",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 if (is_ios) { 46 if (is_ios) {
47 content_app_sources -= [ 47 content_app_sources -= [
48 "content_main.cc", 48 "content_main.cc",
49 "mojo/mojo_init.cc", 49 "mojo/mojo_init.cc",
50 "mojo/mojo_init.h", 50 "mojo/mojo_init.h",
51 ] 51 ]
52 } else { 52 } else {
53 content_app_deps += [ 53 content_app_deps += [
54 "//mojo/application_manager", 54 "//mojo/application_manager",
55 "//mojo/edk/system",
56 "//mojo/environment:chromium", 55 "//mojo/environment:chromium",
57 "//mojo/public/interfaces/application", 56 "//mojo/public/interfaces/application",
57 "//mojo/system",
58 ] 58 ]
59 } 59 }
60 60
61 content_app_extra_configs = [ 61 content_app_extra_configs = [
62 "//build/config/compiler:wexit_time_destructors", 62 "//build/config/compiler:wexit_time_destructors",
63 "//content:content_implementation", 63 "//content:content_implementation",
64 ] 64 ]
65 65
66 # This includes the app sources for both the browser and child processes. 66 # This includes the app sources for both the browser and child processes.
67 source_set("both") { 67 source_set("both") {
(...skipping 26 matching lines...) Expand all
94 source_set("child") { 94 source_set("child") {
95 visibility = [ "//content/public/app:child" ] 95 visibility = [ "//content/public/app:child" ]
96 96
97 sources = content_app_sources 97 sources = content_app_sources
98 configs += content_app_extra_configs 98 configs += content_app_extra_configs
99 deps = content_app_deps 99 deps = content_app_deps
100 100
101 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ] 101 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ]
102 } 102 }
103 } 103 }
OLDNEW
« no previous file with comments | « content/DEPS ('k') | content/app/mojo/mojo_init.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698