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

Side by Side Diff: ash/ash.gyp

Issue 1412813003: 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: Fix Win GN build. 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',
952 '../components/components.gyp:user_manager', 953 '../components/components.gyp:user_manager',
953 '../components/components.gyp:wallpaper', 954 '../components/components.gyp:wallpaper',
954 '../content/content.gyp:content_browser', 955 '../content/content.gyp:content_browser',
955 '../media/media.gyp:media', 956 '../media/media.gyp:media',
956 '../net/net.gyp:net', 957 '../net/net.gyp:net',
957 '../skia/skia.gyp:skia', 958 '../skia/skia.gyp:skia',
958 '../third_party/icu/icu.gyp:icui18n', 959 '../third_party/icu/icu.gyp:icui18n',
959 '../third_party/icu/icu.gyp:icuuc', 960 '../third_party/icu/icu.gyp:icuuc',
960 '../ui/accessibility/accessibility.gyp:accessibility', 961 '../ui/accessibility/accessibility.gyp:accessibility',
961 '../ui/app_list/app_list.gyp:app_list', 962 '../ui/app_list/app_list.gyp:app_list',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
1138 ], 1139 ],
1139 }, 1140 },
1140 { 1141 {
1141 # GN version: //ash:ash_unittests 1142 # GN version: //ash:ash_unittests
1142 'target_name': 'ash_unittests', 1143 'target_name': 'ash_unittests',
1143 'type': 'executable', 1144 'type': 'executable',
1144 'dependencies': [ 1145 'dependencies': [
1145 '../base/base.gyp:base', 1146 '../base/base.gyp:base',
1146 '../base/base.gyp:test_support_base', 1147 '../base/base.gyp:test_support_base',
1147 '../chrome/chrome_resources.gyp:packed_resources', 1148 '../chrome/chrome_resources.gyp:packed_resources',
1149 '../components/components.gyp:signin_core_account_id',
1148 '../components/components.gyp:user_manager', 1150 '../components/components.gyp:user_manager',
1149 '../content/content.gyp:content_browser', 1151 '../content/content.gyp:content_browser',
1150 '../content/content_shell_and_tests.gyp:test_support_content', 1152 '../content/content_shell_and_tests.gyp:test_support_content',
1151 '../skia/skia.gyp:skia', 1153 '../skia/skia.gyp:skia',
1152 '../testing/gtest.gyp:gtest', 1154 '../testing/gtest.gyp:gtest',
1153 '../third_party/icu/icu.gyp:icui18n', 1155 '../third_party/icu/icu.gyp:icui18n',
1154 '../third_party/icu/icu.gyp:icuuc', 1156 '../third_party/icu/icu.gyp:icuuc',
1155 '../ui/accessibility/accessibility.gyp:accessibility', 1157 '../ui/accessibility/accessibility.gyp:accessibility',
1156 '../ui/app_list/app_list.gyp:app_list', 1158 '../ui/app_list/app_list.gyp:app_list',
1157 '../ui/aura/aura.gyp:aura', 1159 '../ui/aura/aura.gyp:aura',
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
1364 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1366 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1365 ], 1367 ],
1366 } 1368 }
1367 ], 1369 ],
1368 ], 1370 ],
1369 }, 1371 },
1370 ], 1372 ],
1371 }], 1373 }],
1372 ], 1374 ],
1373 } 1375 }
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