| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ios/rules.gni") | 7 import("//build/config/ios/rules.gni") |
| 8 import("//rlz/features/features.gni") | 8 import("//rlz/features/features.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "arch_util.h", | 21 "arch_util.h", |
| 22 "browser_about_rewriter.cc", | 22 "browser_about_rewriter.cc", |
| 23 "browser_about_rewriter.h", | 23 "browser_about_rewriter.h", |
| 24 "chrome_constants.cc", | 24 "chrome_constants.cc", |
| 25 "chrome_constants.h", | 25 "chrome_constants.h", |
| 26 "chrome_coordinator.h", | 26 "chrome_coordinator.h", |
| 27 "chrome_coordinator.mm", | 27 "chrome_coordinator.mm", |
| 28 "chrome_paths.h", | 28 "chrome_paths.h", |
| 29 "chrome_paths.mm", | 29 "chrome_paths.mm", |
| 30 "chrome_paths_internal.h", | 30 "chrome_paths_internal.h", |
| 31 "chrome_root_coordinator.h", |
| 32 "chrome_root_coordinator.mm", |
| 31 "chrome_switches.cc", | 33 "chrome_switches.cc", |
| 32 "chrome_switches.h", | 34 "chrome_switches.h", |
| 33 "chrome_url_constants.cc", | 35 "chrome_url_constants.cc", |
| 34 "chrome_url_constants.h", | 36 "chrome_url_constants.h", |
| 35 "chrome_url_util.h", | 37 "chrome_url_util.h", |
| 36 "chrome_url_util.mm", | 38 "chrome_url_util.mm", |
| 37 "crash_loop_detection_util.h", | 39 "crash_loop_detection_util.h", |
| 38 "crash_loop_detection_util.mm", | 40 "crash_loop_detection_util.mm", |
| 39 "experimental_flags.h", | 41 "experimental_flags.h", |
| 40 "experimental_flags.mm", | 42 "experimental_flags.mm", |
| 41 "file_metadata_util.h", | 43 "file_metadata_util.h", |
| 42 "file_metadata_util.mm", | 44 "file_metadata_util.mm", |
| 43 "install_time_util.h", | 45 "install_time_util.h", |
| 44 "install_time_util.mm", | 46 "install_time_util.mm", |
| 45 "installation_notifier.h", | 47 "installation_notifier.h", |
| 46 "installation_notifier.mm", | 48 "installation_notifier.mm", |
| 47 "ios_chrome_field_trials.cc", | 49 "ios_chrome_field_trials.cc", |
| 48 "ios_chrome_field_trials.h", | 50 "ios_chrome_field_trials.h", |
| 49 "ios_chrome_flag_descriptions.cc", | 51 "ios_chrome_flag_descriptions.cc", |
| 50 "ios_chrome_flag_descriptions.h", | 52 "ios_chrome_flag_descriptions.h", |
| 51 "ios_chrome_io_thread.h", | 53 "ios_chrome_io_thread.h", |
| 52 "ios_chrome_io_thread.mm", | 54 "ios_chrome_io_thread.mm", |
| 53 "notification_promo.cc", | 55 "notification_promo.cc", |
| 54 "notification_promo.h", | 56 "notification_promo.h", |
| 55 "open_url_util.h", | 57 "open_url_util.h", |
| 56 "open_url_util.mm", | 58 "open_url_util.mm", |
| 57 "pref_names.cc", | 59 "pref_names.cc", |
| 58 "pref_names.h", | 60 "pref_names.h", |
| 59 "procedural_block_types.h", | 61 "procedural_block_types.h", |
| 60 "root_coordinator.h", | |
| 61 "root_coordinator.mm", | |
| 62 "tab_parenting_global_observer.cc", | 62 "tab_parenting_global_observer.cc", |
| 63 "tab_parenting_global_observer.h", | 63 "tab_parenting_global_observer.h", |
| 64 "web_data_service_factory.cc", | 64 "web_data_service_factory.cc", |
| 65 "web_data_service_factory.h", | 65 "web_data_service_factory.h", |
| 66 "xcallback_parameters.h", | 66 "xcallback_parameters.h", |
| 67 "xcallback_parameters.mm", | 67 "xcallback_parameters.mm", |
| 68 ] | 68 ] |
| 69 deps = [ | 69 deps = [ |
| 70 ":settings_resources", | 70 ":settings_resources", |
| 71 "//base", | 71 "//base", |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 | 223 |
| 224 source_set("browser_internal") { | 224 source_set("browser_internal") { |
| 225 sources = [ | 225 sources = [ |
| 226 "callback_counter.h", | 226 "callback_counter.h", |
| 227 "callback_counter.mm", | 227 "callback_counter.mm", |
| 228 ] | 228 ] |
| 229 deps = [ | 229 deps = [ |
| 230 "//base", | 230 "//base", |
| 231 ] | 231 ] |
| 232 } | 232 } |
| OLD | NEW |