| 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 1660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1671 } | 1671 } |
| 1672 | 1672 |
| 1673 java_cpp_enum("offline_pages_enum_javagen") { | 1673 java_cpp_enum("offline_pages_enum_javagen") { |
| 1674 sources = [ | 1674 sources = [ |
| 1675 "browser/android/offline_pages/offline_page_utils.h", | 1675 "browser/android/offline_pages/offline_page_utils.h", |
| 1676 ] | 1676 ] |
| 1677 } | 1677 } |
| 1678 | 1678 |
| 1679 java_cpp_enum("sad_tab_event_enum_javagen") { | 1679 java_cpp_enum("sad_tab_event_enum_javagen") { |
| 1680 sources = [ | 1680 sources = [ |
| 1681 "browser/ui/sad_tab.cc", | 1681 "//components/ui_metrics/sadtab_metrics_types.h", |
| 1682 ] | 1682 ] |
| 1683 } | 1683 } |
| 1684 | 1684 |
| 1685 source_set("chrome_android_core") { | 1685 source_set("chrome_android_core") { |
| 1686 sources = [ | 1686 sources = [ |
| 1687 "app/android/chrome_android_initializer.cc", | 1687 "app/android/chrome_android_initializer.cc", |
| 1688 "app/android/chrome_android_initializer.h", | 1688 "app/android/chrome_android_initializer.h", |
| 1689 "app/android/chrome_jni_onload.cc", | 1689 "app/android/chrome_jni_onload.cc", |
| 1690 "app/android/chrome_jni_onload.h", | 1690 "app/android/chrome_jni_onload.h", |
| 1691 "app/android/chrome_main_delegate_android.cc", | 1691 "app/android/chrome_main_delegate_android.cc", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1803 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1803 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1804 "//chrome/tools/build/linux/chrome-wrapper", | 1804 "//chrome/tools/build/linux/chrome-wrapper", |
| 1805 "//third_party/xdg-utils/scripts/xdg-mime", | 1805 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1806 "//third_party/xdg-utils/scripts/xdg-settings", | 1806 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1807 ] | 1807 ] |
| 1808 outputs = [ | 1808 outputs = [ |
| 1809 "$root_out_dir/{{source_file_part}}", | 1809 "$root_out_dir/{{source_file_part}}", |
| 1810 ] | 1810 ] |
| 1811 } | 1811 } |
| 1812 } | 1812 } |
| OLD | NEW |