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

Side by Side Diff: ash/ash.gyp

Issue 9307037: Reland http://codereview.chromium.org/9121050/ with fix for aura_win (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Break all dependencies of aura_shell_tests on ash_strings Created 8 years, 10 months 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 | Annotate | Revision Log
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 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
9 }, 9 },
10 10
11 'targets': [ 11 'targets': [
12 { 12 {
13 'target_name': 'ash', 13 'target_name': 'ash',
14 'type': '<(component)', 14 'type': '<(component)',
15 'dependencies': [ 15 'dependencies': [
16 'ash_strings',
16 '../base/base.gyp:base', 17 '../base/base.gyp:base',
17 '../base/base.gyp:base_i18n', 18 '../base/base.gyp:base_i18n',
18 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 19 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
19 '../build/temp_gyp/googleurl.gyp:googleurl', 20 '../build/temp_gyp/googleurl.gyp:googleurl',
20 '../net/net.gyp:net', 21 '../net/net.gyp:net',
21 '../skia/skia.gyp:skia', 22 '../skia/skia.gyp:skia',
22 '../third_party/icu/icu.gyp:icui18n', 23 '../third_party/icu/icu.gyp:icui18n',
23 '../third_party/icu/icu.gyp:icuuc', 24 '../third_party/icu/icu.gyp:icuuc',
24 '../ui/aura/aura.gyp:aura', 25 '../ui/aura/aura.gyp:aura',
25 '../ui/base/strings/ui_strings.gyp:ui_strings', 26 '../ui/base/strings/ui_strings.gyp:ui_strings',
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 ], 330 ],
330 'mac_bundle_resources!': [ 331 'mac_bundle_resources!': [
331 'shell/cocoa/app-Info.plist', 332 'shell/cocoa/app-Info.plist',
332 ], 333 ],
333 'xcode_settings': { 334 'xcode_settings': {
334 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist', 335 'INFOPLIST_FILE': 'shell/cocoa/app-Info.plist',
335 }, 336 },
336 }], 337 }],
337 ], 338 ],
338 }, 339 },
340 {
341 'target_name': 'ash_strings',
342 'type': 'none',
343 'actions': [
344 # Localizable resources.
345 {
346 'action_name': 'ash_strings',
347 'variables': {
348 'grit_grd_file': 'ash_strings.grd',
349 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/ash_strings',
350 },
351 'includes': [ '../build/grit_action.gypi' ],
352 },
353 ],
354 'direct_dependent_settings': {
355 'include_dirs': [
356 '<(SHARED_INTERMEDIATE_DIR)/ash_strings',
357 ],
358 },
359 },
339 ], 360 ],
340 } 361 }
OLDNEW
« no previous file with comments | « ash/DEPS ('k') | ash/ash_strings.grd » ('j') | ash/launcher/launcher_view.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698