| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/compiler/pgo/pgo.gni") | 7 import("//build/config/compiler/pgo/pgo.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/locales.gni") | 9 import("//build/config/locales.gni") |
| 10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
| (...skipping 1621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1632 "browser/android/contextualsearch/resolved_search_term.h", | 1632 "browser/android/contextualsearch/resolved_search_term.h", |
| 1633 ] | 1633 ] |
| 1634 } | 1634 } |
| 1635 | 1635 |
| 1636 java_cpp_enum("offline_pages_enum_javagen") { | 1636 java_cpp_enum("offline_pages_enum_javagen") { |
| 1637 sources = [ | 1637 sources = [ |
| 1638 "browser/android/offline_pages/offline_page_utils.h", | 1638 "browser/android/offline_pages/offline_page_utils.h", |
| 1639 ] | 1639 ] |
| 1640 } | 1640 } |
| 1641 | 1641 |
| 1642 java_cpp_enum("sad_tab_event_enum_javagen") { |
| 1643 sources = [ |
| 1644 "browser/ui/sad_tab.cc", |
| 1645 ] |
| 1646 } |
| 1647 |
| 1642 source_set("chrome_android_core") { | 1648 source_set("chrome_android_core") { |
| 1643 sources = [ | 1649 sources = [ |
| 1644 "app/android/chrome_android_initializer.cc", | 1650 "app/android/chrome_android_initializer.cc", |
| 1645 "app/android/chrome_android_initializer.h", | 1651 "app/android/chrome_android_initializer.h", |
| 1646 "app/android/chrome_jni_onload.cc", | 1652 "app/android/chrome_jni_onload.cc", |
| 1647 "app/android/chrome_jni_onload.h", | 1653 "app/android/chrome_jni_onload.h", |
| 1648 "app/android/chrome_main_delegate_android.cc", | 1654 "app/android/chrome_main_delegate_android.cc", |
| 1649 "app/android/chrome_main_delegate_android.h", | 1655 "app/android/chrome_main_delegate_android.h", |
| 1650 "app/chrome_main_delegate.cc", | 1656 "app/chrome_main_delegate.cc", |
| 1651 "app/chrome_main_delegate.h", | 1657 "app/chrome_main_delegate.h", |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1760 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1766 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1761 "//chrome/tools/build/linux/chrome-wrapper", | 1767 "//chrome/tools/build/linux/chrome-wrapper", |
| 1762 "//third_party/xdg-utils/scripts/xdg-mime", | 1768 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1763 "//third_party/xdg-utils/scripts/xdg-settings", | 1769 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1764 ] | 1770 ] |
| 1765 outputs = [ | 1771 outputs = [ |
| 1766 "$root_out_dir/{{source_file_part}}", | 1772 "$root_out_dir/{{source_file_part}}", |
| 1767 ] | 1773 ] |
| 1768 } | 1774 } |
| 1769 } | 1775 } |
| OLD | NEW |