Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(835)

Side by Side Diff: ash/ash.gyp

Issue 1425093004: Revert of This CL replaces user_manager::UserID with AccountId. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@468875--Chrome-OS-handles-deletion-of-Gmail-account-poorly--Create-AccountID-structure-part2--user_names
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/DEPS ('k') | ash/system/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # These files lists are shared with the GN build. 8 # These files lists are shared with the GN build.
9 'ash_sources': [ 9 'ash_sources': [
10 'accelerators/accelerator_commands.cc', 10 'accelerators/accelerator_commands.cc',
(...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 { 942 {
943 # GN version: //ash 943 # GN version: //ash
944 'target_name': 'ash', 944 'target_name': 'ash',
945 'type': '<(component)', 945 'type': '<(component)',
946 'dependencies': [ 946 'dependencies': [
947 '../base/base.gyp:base', 947 '../base/base.gyp:base',
948 '../base/base.gyp:base_i18n', 948 '../base/base.gyp:base_i18n',
949 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 949 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
950 '../cc/cc.gyp:cc', 950 '../cc/cc.gyp:cc',
951 '../components/components.gyp:device_event_log_component', 951 '../components/components.gyp:device_event_log_component',
952 '../components/components.gyp:signin_core_account_id',
953 '../components/components.gyp:user_manager', 952 '../components/components.gyp:user_manager',
954 '../components/components.gyp:wallpaper', 953 '../components/components.gyp:wallpaper',
955 '../content/content.gyp:content_browser', 954 '../content/content.gyp:content_browser',
956 '../media/media.gyp:media', 955 '../media/media.gyp:media',
957 '../net/net.gyp:net', 956 '../net/net.gyp:net',
958 '../skia/skia.gyp:skia', 957 '../skia/skia.gyp:skia',
959 '../third_party/icu/icu.gyp:icui18n', 958 '../third_party/icu/icu.gyp:icui18n',
960 '../third_party/icu/icu.gyp:icuuc', 959 '../third_party/icu/icu.gyp:icuuc',
961 '../ui/accessibility/accessibility.gyp:accessibility', 960 '../ui/accessibility/accessibility.gyp:accessibility',
962 '../ui/app_list/app_list.gyp:app_list', 961 '../ui/app_list/app_list.gyp:app_list',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
1139 ], 1138 ],
1140 }, 1139 },
1141 { 1140 {
1142 # GN version: //ash:ash_unittests 1141 # GN version: //ash:ash_unittests
1143 'target_name': 'ash_unittests', 1142 'target_name': 'ash_unittests',
1144 'type': 'executable', 1143 'type': 'executable',
1145 'dependencies': [ 1144 'dependencies': [
1146 '../base/base.gyp:base', 1145 '../base/base.gyp:base',
1147 '../base/base.gyp:test_support_base', 1146 '../base/base.gyp:test_support_base',
1148 '../chrome/chrome_resources.gyp:packed_resources', 1147 '../chrome/chrome_resources.gyp:packed_resources',
1149 '../components/components.gyp:signin_core_account_id',
1150 '../components/components.gyp:user_manager', 1148 '../components/components.gyp:user_manager',
1151 '../content/content.gyp:content_browser', 1149 '../content/content.gyp:content_browser',
1152 '../content/content_shell_and_tests.gyp:test_support_content', 1150 '../content/content_shell_and_tests.gyp:test_support_content',
1153 '../skia/skia.gyp:skia', 1151 '../skia/skia.gyp:skia',
1154 '../testing/gtest.gyp:gtest', 1152 '../testing/gtest.gyp:gtest',
1155 '../third_party/icu/icu.gyp:icui18n', 1153 '../third_party/icu/icu.gyp:icui18n',
1156 '../third_party/icu/icu.gyp:icuuc', 1154 '../third_party/icu/icu.gyp:icuuc',
1157 '../ui/accessibility/accessibility.gyp:accessibility', 1155 '../ui/accessibility/accessibility.gyp:accessibility',
1158 '../ui/app_list/app_list.gyp:app_list', 1156 '../ui/app_list/app_list.gyp:app_list',
1159 '../ui/aura/aura.gyp:aura', 1157 '../ui/aura/aura.gyp:aura',
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
1366 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1364 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1367 ], 1365 ],
1368 } 1366 }
1369 ], 1367 ],
1370 ], 1368 ],
1371 }, 1369 },
1372 ], 1370 ],
1373 }], 1371 }],
1374 ], 1372 ],
1375 } 1373 }
OLDNEW
« no previous file with comments | « ash/DEPS ('k') | ash/system/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698