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

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

Issue 864563002: Separate JNI registration with initialization (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component build Created 5 years, 11 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 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 # TODO(GYP) enable chrome_multiple_dll support 5 # TODO(GYP) enable chrome_multiple_dll support
6 is_chrome_multiple_dll = false 6 is_chrome_multiple_dll = false
7 7
8 content_app_sources = [ 8 content_app_sources = [
9 "android/app_jni_registrar.cc", 9 "android/app_jni_registrar.cc",
10 "android/app_jni_registrar.h", 10 "android/app_jni_registrar.h",
11 "android/child_process_service.cc", 11 "android/child_process_service.cc",
12 "android/child_process_service.h", 12 "android/child_process_service.h",
13 "android/content_jni_onload_delegate.cc",
14 "android/content_jni_onload_delegate.h",
15 "android/content_jni_onload.cc",
13 "android/content_main.cc", 16 "android/content_main.cc",
14 "android/content_main.h", 17 "android/content_main.h",
15 "android/library_loader_hooks.cc", 18 "android/library_loader_hooks.cc",
16 "content_main.cc", 19 "content_main.cc",
17 "content_main_runner.cc", 20 "content_main_runner.cc",
18 "mojo/mojo_init.cc", 21 "mojo/mojo_init.cc",
19 "mojo/mojo_init.h", 22 "mojo/mojo_init.h",
20 "startup_helper_win.cc", 23 "startup_helper_win.cc",
21 ] 24 ]
22 25
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 source_set("child") { 104 source_set("child") {
102 visibility = [ "//content/public/app:child" ] 105 visibility = [ "//content/public/app:child" ]
103 106
104 sources = content_app_sources 107 sources = content_app_sources
105 configs += content_app_extra_configs 108 configs += content_app_extra_configs
106 deps = content_app_deps 109 deps = content_app_deps
107 110
108 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ] 111 defines += [ "CHROME_MULTIPLE_DLL_CHILD" ]
109 } 112 }
110 } 113 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698