| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 ] | 145 ] |
| 146 | 146 |
| 147 if (is_android) { | 147 if (is_android) { |
| 148 sources -= [ | 148 sources -= [ |
| 149 "browser/devtools/adb/android_rsa.cc", | 149 "browser/devtools/adb/android_rsa.cc", |
| 150 "browser/devtools/browser_list_tabcontents_provider.cc", | 150 "browser/devtools/browser_list_tabcontents_provider.cc", |
| 151 "browser/devtools/devtools_file_system_indexer.cc", | 151 "browser/devtools/devtools_file_system_indexer.cc", |
| 152 "browser/devtools/devtools_window.cc", | 152 "browser/devtools/devtools_window.cc", |
| 153 "browser/devtools/remote_debugging_server.cc", | 153 "browser/devtools/remote_debugging_server.cc", |
| 154 ] | 154 ] |
| 155 deps -= "//third_party/libusb" | 155 deps -= [ "//third_party/libusb" ] |
| 156 } | 156 } |
| 157 | 157 |
| 158 # TODO implement debug_devtools | 158 # TODO implement debug_devtools |
| 159 # if (debug_devtools) { | 159 # if (debug_devtools) { |
| 160 # defines = [ "DEBUG_DEVTOOLS=1" ] | 160 # defines = [ "DEBUG_DEVTOOLS=1" ] |
| 161 # } | 161 # } |
| 162 # TODO(brettw) this may be required on Windows: | 162 # TODO(brettw) this may be required on Windows: |
| 163 # if (is_win) { | 163 # if (is_win) { |
| 164 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 164 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 165 # 'msvs_disabled_warnings': [ 4267, ] | 165 # 'msvs_disabled_warnings': [ 4267, ] |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 # ":theme_resources_gen", | 299 # ":theme_resources_gen", |
| 300 # #"//ui:ui_resources", | 300 # #"//ui:ui_resources", |
| 301 # ] | 301 # ] |
| 302 #} | 302 #} |
| 303 # | 303 # |
| 304 ## TODO(brettw) rename "app_theme_resources" or something when we don't support | 304 ## TODO(brettw) rename "app_theme_resources" or something when we don't support |
| 305 ## GYP any more. This name is required to match the GYP build. | 305 ## GYP any more. This name is required to match the GYP build. |
| 306 #grit("theme_resources_gen") { | 306 #grit("theme_resources_gen") { |
| 307 # source = "app/theme/theme_resources.grd" | 307 # source = "app/theme/theme_resources.grd" |
| 308 #} | 308 #} |
| OLD | NEW |