| OLD | NEW |
| 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 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 "org/chromium/chrome/browser/PageInfoConnectionType.java", | 675 "org/chromium/chrome/browser/PageInfoConnectionType.java", |
| 676 ] | 676 ] |
| 677 } | 677 } |
| 678 | 678 |
| 679 # GYP: //chrome/chrome_android.gypi:chrome_android_core | 679 # GYP: //chrome/chrome_android.gypi:chrome_android_core |
| 680 static_library("chrome_android_core") { | 680 static_library("chrome_android_core") { |
| 681 sources = [ | 681 sources = [ |
| 682 "app/android/chrome_android_initializer.cc", | 682 "app/android/chrome_android_initializer.cc", |
| 683 "app/android/chrome_android_initializer.h", | 683 "app/android/chrome_android_initializer.h", |
| 684 "app/android/chrome_jni_onload.cc", | 684 "app/android/chrome_jni_onload.cc", |
| 685 "app/android/chrome_jni_onload.h", |
| 685 "app/android/chrome_main_delegate_android.cc", | 686 "app/android/chrome_main_delegate_android.cc", |
| 686 "app/android/chrome_main_delegate_android.h", | 687 "app/android/chrome_main_delegate_android.h", |
| 687 "app/chrome_main_delegate.cc", | 688 "app/chrome_main_delegate.cc", |
| 688 "app/chrome_main_delegate.h", | 689 "app/chrome_main_delegate.h", |
| 689 ] | 690 ] |
| 690 | 691 |
| 691 include_dirs = [ android_ndk_include_dir ] | 692 include_dirs = [ android_ndk_include_dir ] |
| 692 | 693 |
| 693 libs = [ | 694 libs = [ |
| 694 "android", | 695 "android", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 | 734 |
| 734 args = [ | 735 args = [ |
| 735 rebase_path(infile, root_build_dir), | 736 rebase_path(infile, root_build_dir), |
| 736 rebase_path(outfile, root_build_dir), | 737 rebase_path(outfile, root_build_dir), |
| 737 "-e s/@@NAME@@/$name/", | 738 "-e s/@@NAME@@/$name/", |
| 738 "-e s/@@FILENAME@@/$filename/", | 739 "-e s/@@FILENAME@@/$filename/", |
| 739 "-e s/@@CONFDIR@@/$confdir/", | 740 "-e s/@@CONFDIR@@/$confdir/", |
| 740 ] | 741 ] |
| 741 } | 742 } |
| 742 } | 743 } |
| OLD | NEW |