| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 | 171 |
| 172 if (enable_rlz) { | 172 if (enable_rlz) { |
| 173 deps += [ "//ios/chrome/browser/rlz" ] | 173 deps += [ "//ios/chrome/browser/rlz" ] |
| 174 } | 174 } |
| 175 } | 175 } |
| 176 | 176 |
| 177 # This is a separate target so that the 'defines' does not leak to the | 177 # This is a separate target so that the 'defines' does not leak to the |
| 178 # other files (which would increase the compilation time when changing | 178 # other files (which would increase the compilation time when changing |
| 179 # the value). | 179 # the value). |
| 180 source_set("about_flags") { | 180 source_set("about_flags") { |
| 181 configs += [ "//build/config/compiler:enable_arc" ] |
| 181 sources = [ | 182 sources = [ |
| 182 "about_flags.h", | 183 "about_flags.h", |
| 183 "about_flags.mm", | 184 "about_flags.mm", |
| 184 ] | 185 ] |
| 185 | 186 |
| 186 deps = [ | 187 deps = [ |
| 187 ":browser", | 188 ":browser", |
| 188 "//base", | 189 "//base", |
| 189 "//components/autofill/core/common", | 190 "//components/autofill/core/common", |
| 190 "//components/dom_distiller/core", | 191 "//components/dom_distiller/core", |
| (...skipping 40 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 |