| 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") |
| 6 import("//build/config/ios/ios_sdk.gni") |
| 7 |
| 5 source_set("common") { | 8 source_set("common") { |
| 6 sources = [ | 9 sources = [ |
| 7 "channel_info.h", | 10 "channel_info.h", |
| 8 "channel_info.mm", | 11 "channel_info.mm", |
| 9 "material_timing.h", | 12 "material_timing.h", |
| 10 "material_timing.mm", | 13 "material_timing.mm", |
| 11 "string_util.h", | 14 "string_util.h", |
| 12 "string_util.mm", | 15 "string_util.mm", |
| 13 "x_callback_url.cc", | 16 "x_callback_url.cc", |
| 14 "x_callback_url.h", | 17 "x_callback_url.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 33 "ns_regular_expression_unittest.mm", | 36 "ns_regular_expression_unittest.mm", |
| 34 "string_util_unittest.mm", | 37 "string_util_unittest.mm", |
| 35 "x_callback_url_unittest.cc", | 38 "x_callback_url_unittest.cc", |
| 36 ] | 39 ] |
| 37 deps = [ | 40 deps = [ |
| 38 ":common", | 41 ":common", |
| 39 "//base", | 42 "//base", |
| 40 "//testing/gtest", | 43 "//testing/gtest", |
| 41 ] | 44 ] |
| 42 } | 45 } |
| 46 |
| 47 buildflag_header("ios_app_bundle_id_prefix_header") { |
| 48 header = "ios_app_bundle_id_prefix.h" |
| 49 flags = [ "IOS_APP_BUNDLE_ID_PREFIX=\"$ios_app_bundle_id_prefix\"" ] |
| 50 } |
| OLD | NEW |