| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//extensions/features/features.gni") |
| 6 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 7 | 8 |
| 8 declare_args() { | 9 declare_args() { |
| 9 # You can set the variable 'use_official_google_api_keys' to true | 10 # You can set the variable 'use_official_google_api_keys' to true |
| 10 # to use the Google-internal file containing official API keys | 11 # to use the Google-internal file containing official API keys |
| 11 # for Google Chrome even in a developer build. Setting this | 12 # for Google Chrome even in a developer build. Setting this |
| 12 # variable explicitly to true will cause your build to fail if the | 13 # variable explicitly to true will cause your build to fail if the |
| 13 # internal file is missing. | 14 # internal file is missing. |
| 14 # | 15 # |
| 15 # The variable is documented here, but not handled in this file; | 16 # The variable is documented here, but not handled in this file; |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 } | 275 } |
| 275 | 276 |
| 276 if (is_mac || is_ios) { | 277 if (is_mac || is_ios) { |
| 277 set_sources_assignment_filter([]) | 278 set_sources_assignment_filter([]) |
| 278 sources += [ "google_api_keys_mac_unittest.mm" ] | 279 sources += [ "google_api_keys_mac_unittest.mm" ] |
| 279 set_sources_assignment_filter(sources_assignment_filter) | 280 set_sources_assignment_filter(sources_assignment_filter) |
| 280 | 281 |
| 281 deps += [ "//third_party/ocmock" ] | 282 deps += [ "//third_party/ocmock" ] |
| 282 } | 283 } |
| 283 } | 284 } |
| OLD | NEW |