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

Side by Side Diff: chrome/BUILD.gn

Issue 864563002: Separate JNI registration with initialization (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: put delegate implementation into .cc 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/locales.gni") 6 import("//build/config/locales.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//chrome/chrome_repack_locales.gni") 8 import("//chrome/chrome_repack_locales.gni")
9 import("//chrome/version.gni") 9 import("//chrome/version.gni")
10 10
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 outputs = [ 558 outputs = [
559 "org/chromium/chrome/browser/PageInfoConnectionType.java", 559 "org/chromium/chrome/browser/PageInfoConnectionType.java",
560 ] 560 ]
561 } 561 }
562 562
563 # GYP: //chrome/chrome_android.gypi:chrome_android_core 563 # GYP: //chrome/chrome_android.gypi:chrome_android_core
564 static_library("chrome_android_core") { 564 static_library("chrome_android_core") {
565 sources = [ 565 sources = [
566 "app/android/chrome_android_initializer.cc", 566 "app/android/chrome_android_initializer.cc",
567 "app/android/chrome_android_initializer.h", 567 "app/android/chrome_android_initializer.h",
568 "app/android/chrome_jni_onload.cc",
568 "app/android/chrome_main_delegate_android.cc", 569 "app/android/chrome_main_delegate_android.cc",
569 "app/android/chrome_main_delegate_android.h", 570 "app/android/chrome_main_delegate_android.h",
570 "app/chrome_main_delegate.cc", 571 "app/chrome_main_delegate.cc",
571 "app/chrome_main_delegate.h", 572 "app/chrome_main_delegate.h",
572 ] 573 ]
573 574
574 include_dirs = [ android_ndk_include_dir ] 575 include_dirs = [ android_ndk_include_dir ]
575 576
576 libs = [ 577 libs = [
577 "android", 578 "android",
578 "jnigraphics", 579 "jnigraphics",
579 ] 580 ]
580 581
581 deps = [ 582 deps = [
582 "//chrome/browser", 583 "//chrome/browser",
583 "//chrome/browser/ui", 584 "//chrome/browser/ui",
584 "//chrome/plugin", 585 "//chrome/plugin",
585 "//chrome/renderer", 586 "//chrome/renderer",
586 "//chrome/utility", 587 "//chrome/utility",
587 "//components/enhanced_bookmarks", 588 "//components/enhanced_bookmarks",
588 "//content/public/app:browser", 589 "//content/public/app:browser",
589 ] 590 ]
590 } 591 }
591 } 592 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698