Chromium Code Reviews| 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 static_library("handler_lib") { | 5 static_library("handler_lib") { |
| 6 sources = [ | 6 sources = [ |
| 7 "crash_report_upload_thread.cc", | 7 "crash_report_upload_thread.cc", |
| 8 "crash_report_upload_thread.h", | 8 "crash_report_upload_thread.h", |
| 9 "handler_main.cc", | 9 "handler_main.cc", |
| 10 "handler_main.h", | 10 "handler_main.h", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 48 ] | 48 ] |
| 49 | 49 |
| 50 if (is_mac && is_component_build) { | 50 if (is_mac && is_component_build) { |
| 51 # The handler is in Chromium.app/Contents/Versions/X/Chromium Framework.fram ework/Helpers/ | 51 # The handler is in Chromium.app/Contents/Versions/X/Chromium Framework.fram ework/Helpers/ |
| 52 # so set rpath up to the base. | 52 # so set rpath up to the base. |
| 53 ldflags = [ | 53 ldflags = [ |
| 54 "-rpath", | 54 "-rpath", |
| 55 "@loader_path/../../../../../..", | 55 "@loader_path/../../../../../..", |
| 56 ] | 56 ] |
| 57 } | 57 } |
| 58 | |
| 59 if (is_win) { | |
| 60 configs -= [ "//build/config/win:console" ] | |
|
Mark Mentovai
2016/08/25 18:10:28
I don’t know if an import is needed to be able to
scottmg
2016/08/25 18:14:10
I think as that config is in a .gn (not .gni) it's
| |
| 61 configs += [ "//build/config/win:windowed" ] | |
| 62 } | |
| 58 } | 63 } |
| OLD | NEW |