| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 source_set("app_window") { | 5 source_set("app_window") { |
| 6 sources = [ | 6 sources = [ |
| 7 "app_delegate.h", | 7 "app_delegate.h", |
| 8 "app_web_contents_helper.cc", | 8 "app_web_contents_helper.cc", |
| 9 "app_web_contents_helper.h", | 9 "app_web_contents_helper.h", |
| 10 "app_window.cc", | 10 "app_window.cc", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 configs += [ | 25 configs += [ |
| 26 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 26 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 27 "//build/config/compiler:no_size_t_to_int_warning", | 27 "//build/config/compiler:no_size_t_to_int_warning", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 deps = [ | 30 deps = [ |
| 31 "//content/public/common", | 31 "//content/public/common", |
| 32 "//extensions:extensions_browser_resources", | 32 "//extensions:extensions_browser_resources", |
| 33 "//extensions/strings", | 33 "//extensions/strings", |
| 34 ] | 34 ] |
| 35 |
| 36 # This is because app_window depends on extensions/browser w/o declaring a |
| 37 # dependency. See gn check out/Default extensions/browser/app_window will |
| 38 # fail. |
| 39 include_dirs = [ "//third_party/flatbuffers/src/include/" ] |
| 35 } | 40 } |
| OLD | NEW |