| 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 # Technically, this directory should not depend on files from src/chrome, but | 5 # Technically, this directory should not depend on files from src/chrome, but |
| 6 # that's where the VERSION file is. This should probably all be moved to | 6 # that's where the VERSION file is. This should probably all be moved to |
| 7 # src/build. | 7 # src/build. |
| 8 import("//chrome/version.gni") | 8 import("//chrome/version.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 | 10 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "//extensions/renderer", | 43 "//extensions/renderer", |
| 44 "//extensions/shell/common/api", | 44 "//extensions/shell/common/api", |
| 45 "//extensions/shell/common/api:api_registration", | 45 "//extensions/shell/common/api:api_registration", |
| 46 "//extensions/utility", | 46 "//extensions/utility", |
| 47 "//extensions:extensions_resources", | 47 "//extensions:extensions_resources", |
| 48 "//extensions:shell_and_test_pak", | 48 "//extensions:shell_and_test_pak", |
| 49 "//mojo/environment:chromium", | 49 "//mojo/environment:chromium", |
| 50 "//skia", | 50 "//skia", |
| 51 "//third_party/WebKit/public:blink", | 51 "//third_party/WebKit/public:blink", |
| 52 "//third_party/mojo/src/mojo/edk/system", | 52 "//third_party/mojo/src/mojo/edk/system", |
| 53 "//ui/base", | |
| 54 "//ui/base/ime", | |
| 55 "//ui/wm", | 53 "//ui/wm", |
| 56 "//v8", | 54 "//v8", |
| 57 ] | 55 ] |
| 58 sources = [ | 56 sources = [ |
| 59 "app/shell_main_delegate.cc", | 57 "app/shell_main_delegate.cc", |
| 60 "app/shell_main_delegate.h", | 58 "app/shell_main_delegate.h", |
| 61 "browser/api/identity/identity_api.cc", | 59 "browser/api/identity/identity_api.cc", |
| 62 "browser/api/identity/identity_api.h", | 60 "browser/api/identity/identity_api.h", |
| 63 "browser/default_shell_browser_main_delegate.cc", | 61 "browser/default_shell_browser_main_delegate.cc", |
| 64 "browser/default_shell_browser_main_delegate.h", | 62 "browser/default_shell_browser_main_delegate.h", |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 configs += [ "//build/config/win:windowed" ] | 168 configs += [ "//build/config/win:windowed" ] |
| 171 configs -= [ "//build/config/win:console" ] | 169 configs -= [ "//build/config/win:console" ] |
| 172 } | 170 } |
| 173 } | 171 } |
| 174 } | 172 } |
| 175 | 173 |
| 176 process_version("version_header") { | 174 process_version("version_header") { |
| 177 source = "common/version.h.in" | 175 source = "common/version.h.in" |
| 178 output = "$target_gen_dir/common/version.h" | 176 output = "$target_gen_dir/common/version.h" |
| 179 } | 177 } |
| OLD | NEW |