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/symlink.gni") | 5 import("//build/symlink.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 } else { | 325 } else { |
326 binary_symlink("dump_syms") { | 326 binary_symlink("dump_syms") { |
327 binary_label = ":$target_name($host_toolchain)" | 327 binary_label = ":$target_name($host_toolchain)" |
328 } | 328 } |
329 binary_symlink("symupload") { | 329 binary_symlink("symupload") { |
330 binary_label = ":$target_name($host_toolchain)" | 330 binary_label = ":$target_name($host_toolchain)" |
331 } | 331 } |
332 } | 332 } |
333 } | 333 } |
334 | 334 |
| 335 if (is_ios) { |
| 336 binary_symlink("dump_syms") { |
| 337 binary_label = ":$target_name($host_toolchain)" |
| 338 } |
| 339 binary_symlink("symupload") { |
| 340 binary_label = ":$target_name($host_toolchain)" |
| 341 } |
| 342 } |
| 343 |
335 if (is_mac) { | 344 if (is_mac) { |
336 static_library("utilities") { | 345 static_library("utilities") { |
337 sources = [ | 346 sources = [ |
338 "src/client/mac/crash_generation/ConfigFile.mm", | 347 "src/client/mac/crash_generation/ConfigFile.mm", |
339 "src/client/mac/handler/breakpad_nlist_64.cc", | 348 "src/client/mac/handler/breakpad_nlist_64.cc", |
340 "src/client/mac/handler/dynamic_images.cc", | 349 "src/client/mac/handler/dynamic_images.cc", |
341 "src/client/mac/handler/minidump_generator.cc", | 350 "src/client/mac/handler/minidump_generator.cc", |
342 "src/client/minidump_file_writer.cc", | 351 "src/client/minidump_file_writer.cc", |
343 "src/common/convert_UTF.c", | 352 "src/common/convert_UTF.c", |
344 "src/common/mac/MachIPC.mm", | 353 "src/common/mac/MachIPC.mm", |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
898 | 907 |
899 if (is_android) { | 908 if (is_android) { |
900 # TODO(GYP_GONE) Delete this after we've converted everything to GN. | 909 # TODO(GYP_GONE) Delete this after we've converted everything to GN. |
901 group("breakpad_unittests_deps") { | 910 group("breakpad_unittests_deps") { |
902 testonly = true | 911 testonly = true |
903 deps = [ | 912 deps = [ |
904 ":breakpad_unittests", | 913 ":breakpad_unittests", |
905 ] | 914 ] |
906 } | 915 } |
907 } | 916 } |
OLD | NEW |