| 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("//testing/test.gni") |
| 6 |
| 5 config("tools_config") { | 7 config("tools_config") { |
| 6 include_dirs = [ | 8 include_dirs = [ |
| 7 "src", | 9 "src", |
| 8 "src/third_party", | 10 "src/third_party", |
| 9 ] | 11 ] |
| 10 if (is_android) { | 12 if (is_android) { |
| 11 defines = [ "__ANDROID__" ] | 13 defines = [ "__ANDROID__" ] |
| 12 } | 14 } |
| 13 if (is_clang) { | 15 if (is_clang) { |
| 14 cflags = [ "-Wno-tautological-constant-out-of-range-compare" ] | 16 cflags = [ "-Wno-tautological-constant-out-of-range-compare" ] |
| (...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 sources = [ | 774 sources = [ |
| 773 "src/client/windows/sender/crash_report_sender.cc", | 775 "src/client/windows/sender/crash_report_sender.cc", |
| 774 "src/client/windows/sender/crash_report_sender.h", | 776 "src/client/windows/sender/crash_report_sender.h", |
| 775 "src/common/windows/http_upload.cc", | 777 "src/common/windows/http_upload.cc", |
| 776 "src/common/windows/http_upload.h", | 778 "src/common/windows/http_upload.h", |
| 777 ] | 779 ] |
| 778 configs += [ ":sender_config" ] | 780 configs += [ ":sender_config" ] |
| 779 public_configs = [ ":sender_config" ] | 781 public_configs = [ ":sender_config" ] |
| 780 } | 782 } |
| 781 } | 783 } |
| OLD | NEW |