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

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: address comments and sync Created 5 years, 10 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 | « base/base.gypi ('k') | chrome/android/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 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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 outputs = [ 575 outputs = [
576 "org/chromium/chrome/browser/PageInfoConnectionType.java", 576 "org/chromium/chrome/browser/PageInfoConnectionType.java",
577 ] 577 ]
578 } 578 }
579 579
580 # GYP: //chrome/chrome_android.gypi:chrome_android_core 580 # GYP: //chrome/chrome_android.gypi:chrome_android_core
581 static_library("chrome_android_core") { 581 static_library("chrome_android_core") {
582 sources = [ 582 sources = [
583 "app/android/chrome_android_initializer.cc", 583 "app/android/chrome_android_initializer.cc",
584 "app/android/chrome_android_initializer.h", 584 "app/android/chrome_android_initializer.h",
585 "app/android/chrome_jni_onload.cc",
585 "app/android/chrome_main_delegate_android.cc", 586 "app/android/chrome_main_delegate_android.cc",
586 "app/android/chrome_main_delegate_android.h", 587 "app/android/chrome_main_delegate_android.h",
587 "app/chrome_main_delegate.cc", 588 "app/chrome_main_delegate.cc",
588 "app/chrome_main_delegate.h", 589 "app/chrome_main_delegate.h",
589 ] 590 ]
590 591
591 include_dirs = [ android_ndk_include_dir ] 592 include_dirs = [ android_ndk_include_dir ]
592 593
593 libs = [ 594 libs = [
594 "android", 595 "android",
595 "jnigraphics", 596 "jnigraphics",
596 ] 597 ]
597 598
598 deps = [ 599 deps = [
599 "//chrome/browser", 600 "//chrome/browser",
600 "//chrome/browser/ui", 601 "//chrome/browser/ui",
601 "//chrome/plugin", 602 "//chrome/plugin",
602 "//chrome/renderer", 603 "//chrome/renderer",
603 "//chrome/utility", 604 "//chrome/utility",
604 "//components/enhanced_bookmarks", 605 "//components/enhanced_bookmarks",
605 "//content/public/app:browser", 606 "//content/public/app:browser",
606 ] 607 ]
607 } 608 }
608 } 609 }
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | chrome/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698