| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 sources = [ | 212 sources = [ |
| 213 "resources/Settings.bundle/Experimental.plist", | 213 "resources/Settings.bundle/Experimental.plist", |
| 214 "resources/Settings.bundle/Root.plist", | 214 "resources/Settings.bundle/Root.plist", |
| 215 ] | 215 ] |
| 216 outputs = [ | 216 outputs = [ |
| 217 "{{bundle_resources_dir}}/Settings.bundle/{{source_file_part}}", | 217 "{{bundle_resources_dir}}/Settings.bundle/{{source_file_part}}", |
| 218 ] | 218 ] |
| 219 } | 219 } |
| 220 | 220 |
| 221 source_set("unit_tests") { | 221 source_set("unit_tests") { |
| 222 configs += [ "//build/config/compiler:enable_arc" ] |
| 222 testonly = true | 223 testonly = true |
| 223 sources = [ | 224 sources = [ |
| 224 "callback_counter_unittest.mm", | 225 "callback_counter_unittest.mm", |
| 225 "chrome_url_util_unittest.mm", | 226 "chrome_url_util_unittest.mm", |
| 226 "crash_loop_detection_util_unittest.mm", | 227 "crash_loop_detection_util_unittest.mm", |
| 227 "install_time_util_unittest.mm", | 228 "install_time_util_unittest.mm", |
| 228 "installation_notifier_unittest.mm", | 229 "installation_notifier_unittest.mm", |
| 229 "ios_chrome_io_thread_unittest.mm", | 230 "ios_chrome_io_thread_unittest.mm", |
| 230 "notification_promo_unittest.cc", | 231 "notification_promo_unittest.cc", |
| 231 ] | 232 ] |
| (...skipping 17 matching lines...) Expand all Loading... |
| 249 | 250 |
| 250 source_set("browser_internal") { | 251 source_set("browser_internal") { |
| 251 sources = [ | 252 sources = [ |
| 252 "callback_counter.h", | 253 "callback_counter.h", |
| 253 "callback_counter.mm", | 254 "callback_counter.mm", |
| 254 ] | 255 ] |
| 255 deps = [ | 256 deps = [ |
| 256 "//base", | 257 "//base", |
| 257 ] | 258 ] |
| 258 } | 259 } |
| OLD | NEW |