| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 | 9 |
| 10 about_credits_file = "$target_gen_dir/about_credits.html" | 10 about_credits_file = "$target_gen_dir/about_credits.html" |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 # '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/metrics/variations/gener
ated_resources_map.cc', | 128 # '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/metrics/variations/gener
ated_resources_map.cc', |
| 129 | 129 |
| 130 # TODO(GYP) Also add these nacl_defines to direct dependents. | 130 # TODO(GYP) Also add these nacl_defines to direct dependents. |
| 131 #defines = nacl_defines | 131 #defines = nacl_defines |
| 132 | 132 |
| 133 # TODO(GYP) remove this when the real webrtc target is used below. | 133 # TODO(GYP) remove this when the real webrtc target is used below. |
| 134 configs += [ "//content:webrtc_stub_config" ] | 134 configs += [ "//content:webrtc_stub_config" ] |
| 135 | 135 |
| 136 deps += [ | 136 deps += [ |
| 137 "//cc", | 137 "//cc", |
| 138 "//chrome/browser/extensions", |
| 138 "//chrome/browser/performance_monitor", | 139 "//chrome/browser/performance_monitor", |
| 139 "//chrome/browser/sync_file_system:sync_file_system_proto", | 140 "//chrome/browser/sync_file_system:sync_file_system_proto", |
| 140 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr
oto", | 141 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr
oto", |
| 141 "//chrome/common/extensions/api:api", | 142 "//chrome/common/extensions/api:api", |
| 142 "//components/autofill/content/browser", | 143 "//components/autofill/content/browser", |
| 143 "//components/dom_distiller/content", | 144 "//components/dom_distiller/content", |
| 144 "//components/keyed_service/content", | 145 "//components/keyed_service/content", |
| 145 "//components/translate/content/browser", | 146 "//components/translate/content/browser", |
| 146 "//components/url_matcher", | 147 "//components/url_matcher", |
| 147 "//components/usb_service", | 148 "//components/usb_service", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 164 "//ui/gl", | 165 "//ui/gl", |
| 165 "//ui/surface", | 166 "//ui/surface", |
| 166 "//ui/web_dialogs", | 167 "//ui/web_dialogs", |
| 167 "//v8", | 168 "//v8", |
| 168 "//webkit:resources", | 169 "//webkit:resources", |
| 169 "//webkit/browser:storage", | 170 "//webkit/browser:storage", |
| 170 "//webkit/common", | 171 "//webkit/common", |
| 171 "//webkit/common:storage", | 172 "//webkit/common:storage", |
| 172 # TODO(GYP) | 173 # TODO(GYP) |
| 173 #"apps", | 174 #"apps", |
| 174 #"browser_extensions", | |
| 175 #"debugger", | 175 #"debugger", |
| 176 #"installer_util", | 176 #"installer_util", |
| 177 #"../components/components.gyp:navigation_interception", | 177 #"../components/components.gyp:navigation_interception", |
| 178 #"../components/components.gyp:password_manager_content_browser", | 178 #"../components/components.gyp:password_manager_content_browser", |
| 179 #"../components/components.gyp:precache_content", | 179 #"../components/components.gyp:precache_content", |
| 180 #"../components/components.gyp:sessions", | 180 #"../components/components.gyp:sessions", |
| 181 #"../components/components.gyp:storage_monitor", | 181 #"../components/components.gyp:storage_monitor", |
| 182 #"../media/cast/cast.gyp:cast_transport", | 182 #"../media/cast/cast.gyp:cast_transport", |
| 183 #"../media/media.gyp:media", | 183 #"../media/media.gyp:media", |
| 184 ## TODO(tonyg): Remove this dependency (crbug.com/280157). | 184 ## TODO(tonyg): Remove this dependency (crbug.com/280157). |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 # TODO(GYP) write internal action | 651 # TODO(GYP) write internal action |
| 652 if (false) { #if (is_chrome_branded) { | 652 if (false) { #if (is_chrome_branded) { |
| 653 action("chrome_internal_resources_gen") { | 653 action("chrome_internal_resources_gen") { |
| 654 # TODO(GYP) | 654 # TODO(GYP) |
| 655 } | 655 } |
| 656 } else { | 656 } else { |
| 657 group("chrome_internal_resources_gen") { | 657 group("chrome_internal_resources_gen") { |
| 658 # Empty placeholder. | 658 # Empty placeholder. |
| 659 } | 659 } |
| 660 } | 660 } |
| OLD | NEW |