OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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("//crypto/ssl/flags.gni") | 5 import("//crypto/ssl/flags.gni") |
6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
7 | 7 |
8 executable("chrome") { | 8 executable("chrome") { |
9 sources = [ | 9 sources = [ |
10 "app/breakpad_field_trial_win.cc", | 10 "app/breakpad_field_trial_win.cc", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "app/client_util.cc", | 59 "app/client_util.cc", |
60 "app/client_util.h", | 60 "app/client_util.h", |
61 ] | 61 ] |
62 } | 62 } |
63 } | 63 } |
64 | 64 |
65 static_library("browser") { | 65 static_library("browser") { |
66 external = true | 66 external = true |
67 | 67 |
68 if (is_linux) { | 68 if (is_linux) { |
69 libs = [ "dl" ] | |
70 if (toolkit_uses_gtk) { | 69 if (toolkit_uses_gtk) { |
71 libs += [ "gconf-2" ] | 70 libs = [ "gconf-2" ] |
72 } | 71 } |
73 } | 72 } |
74 if (is_linux) { | 73 if (is_linux) { |
75 configs += [ | 74 configs += [ |
76 "//build/config/linux:x11", | 75 "//build/config/linux:x11", |
77 ] | 76 ] |
78 } | 77 } |
79 | 78 |
80 deps = [ | 79 deps = [ |
81 "//third_party/expat", | 80 "//third_party/expat", |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 # ":theme_resources_gen", | 300 # ":theme_resources_gen", |
302 # #"//ui:ui_resources", | 301 # #"//ui:ui_resources", |
303 # ] | 302 # ] |
304 #} | 303 #} |
305 # | 304 # |
306 ## TODO(brettw) rename "app_theme_resources" or something when we don't support | 305 ## TODO(brettw) rename "app_theme_resources" or something when we don't support |
307 ## GYP any more. This name is required to match the GYP build. | 306 ## GYP any more. This name is required to match the GYP build. |
308 #grit("theme_resources_gen") { | 307 #grit("theme_resources_gen") { |
309 # source = "app/theme/theme_resources.grd" | 308 # source = "app/theme/theme_resources.grd" |
310 #} | 309 #} |
OLD | NEW |