| 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 | 7 |
| 8 # Technically, this directory should not depend on files from src/chrome, but | 8 # Technically, this directory should not depend on files from src/chrome, but |
| 9 # that's where the VERSION file is. This should probably all be moved to | 9 # that's where the VERSION file is. This should probably all be moved to |
| 10 # src/build. | 10 # src/build. |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "//v8", | 62 "//v8", |
| 63 ] | 63 ] |
| 64 | 64 |
| 65 sources = [ | 65 sources = [ |
| 66 "app/paths_mac.h", | 66 "app/paths_mac.h", |
| 67 "app/paths_mac.mm", | 67 "app/paths_mac.mm", |
| 68 "app/shell_main_delegate.cc", | 68 "app/shell_main_delegate.cc", |
| 69 "app/shell_main_delegate.h", | 69 "app/shell_main_delegate.h", |
| 70 "browser/api/identity/identity_api.cc", | 70 "browser/api/identity/identity_api.cc", |
| 71 "browser/api/identity/identity_api.h", | 71 "browser/api/identity/identity_api.h", |
| 72 "browser/api/metrics_private/shell_metrics_private_delegate.cc", |
| 73 "browser/api/metrics_private/shell_metrics_private_delegate.h", |
| 72 "browser/default_shell_browser_main_delegate.cc", | 74 "browser/default_shell_browser_main_delegate.cc", |
| 73 "browser/default_shell_browser_main_delegate.h", | 75 "browser/default_shell_browser_main_delegate.h", |
| 74 "browser/desktop_controller.cc", | 76 "browser/desktop_controller.cc", |
| 75 "browser/desktop_controller.h", | 77 "browser/desktop_controller.h", |
| 76 "browser/media_capture_util.cc", | 78 "browser/media_capture_util.cc", |
| 77 "browser/media_capture_util.h", | 79 "browser/media_capture_util.h", |
| 78 "browser/shell_app_delegate.cc", | 80 "browser/shell_app_delegate.cc", |
| 79 "browser/shell_app_delegate.h", | 81 "browser/shell_app_delegate.h", |
| 80 "browser/shell_app_view_guest_delegate.cc", | 82 "browser/shell_app_view_guest_delegate.cc", |
| 81 "browser/shell_app_view_guest_delegate.h", | 83 "browser/shell_app_view_guest_delegate.h", |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 "//extensions/browser", | 345 "//extensions/browser", |
| 344 ] | 346 ] |
| 345 | 347 |
| 346 if (is_chromeos) { | 348 if (is_chromeos) { |
| 347 deps += [ | 349 deps += [ |
| 348 "//chromeos:test_support", | 350 "//chromeos:test_support", |
| 349 "//components/keyed_service/content", | 351 "//components/keyed_service/content", |
| 350 ] | 352 ] |
| 351 } | 353 } |
| 352 } | 354 } |
| OLD | NEW |