| 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/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//third_party/protobuf/proto_library.gni") | 6 import("//third_party/protobuf/proto_library.gni") |
| 7 | 7 |
| 8 declare_args() { | 8 declare_args() { |
| 9 google_test_gaia_client_id = "" | 9 google_test_gaia_client_id = "" |
| 10 google_test_gaia_client_secret = "" | 10 google_test_gaia_client_secret = "" |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "//url", | 108 "//url", |
| 109 ] | 109 ] |
| 110 allow_circular_includes_from = [ | 110 allow_circular_includes_from = [ |
| 111 "//ios/chrome/browser/sync/glue", | 111 "//ios/chrome/browser/sync/glue", |
| 112 "//ios/chrome/browser/browser_state", | 112 "//ios/chrome/browser/browser_state", |
| 113 ] | 113 ] |
| 114 libs = [ "UIKit.framework" ] | 114 libs = [ "UIKit.framework" ] |
| 115 } | 115 } |
| 116 | 116 |
| 117 source_set("browser_impl") { | 117 source_set("browser_impl") { |
| 118 configs += [ "//build/config/compiler:enable_arc" ] |
| 118 sources = [ | 119 sources = [ |
| 119 "application_context_impl.cc", | 120 "application_context_impl.cc", |
| 120 "application_context_impl.h", | 121 "application_context_impl.h", |
| 121 "ios_chrome_main_parts.h", | 122 "ios_chrome_main_parts.h", |
| 122 "ios_chrome_main_parts.mm", | 123 "ios_chrome_main_parts.mm", |
| 123 ] | 124 ] |
| 124 deps = [ | 125 deps = [ |
| 125 ":about_flags", | 126 ":about_flags", |
| 126 ":browser", | 127 ":browser", |
| 127 "//base", | 128 "//base", |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "//components/proxy_config", | 232 "//components/proxy_config", |
| 232 "//components/ssl_config", | 233 "//components/ssl_config", |
| 233 "//components/variations", | 234 "//components/variations", |
| 234 "//ios/web:test_support", | 235 "//ios/web:test_support", |
| 235 "//net", | 236 "//net", |
| 236 "//net:test_support", | 237 "//net:test_support", |
| 237 "//testing/gtest", | 238 "//testing/gtest", |
| 238 "//url", | 239 "//url", |
| 239 ] | 240 ] |
| 240 } | 241 } |
| OLD | NEW |