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

Side by Side Diff: chrome/chrome_dll_bundle.gypi

Issue 109013004: Use icudat*.dat file on Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add '==1' to icu_use_data_file_flag check Created 7 years 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 # This file contains resources for the main Mac chromium bundle. 5 # This file contains resources for the main Mac chromium bundle.
6 { 6 {
7 # The main browser executable's name is <(mac_product_name). 7 # The main browser executable's name is <(mac_product_name).
8 # Certain things will get confused if two modules in the 8 # Certain things will get confused if two modules in the
9 # executable share the same name, so append " Framework" to the 9 # executable share the same name, so append " Framework" to the
10 # product_name used for the framework. This will result in 10 # product_name used for the framework. This will result in
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 ], 301 ],
302 }], 302 }],
303 ['enable_webrtc==1 and libpeer_target_type!="static_library"', { 303 ['enable_webrtc==1 and libpeer_target_type!="static_library"', {
304 'copies': [{ 304 'copies': [{
305 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries', 305 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries',
306 'files': [ 306 'files': [
307 '<(PRODUCT_DIR)/libpeerconnection.so', 307 '<(PRODUCT_DIR)/libpeerconnection.so',
308 ], 308 ],
309 }], 309 }],
310 }], 310 }],
311 ['icu_use_data_file_flag==1', {
312 'mac_bundle_resources': [
313 '<(DEPTH)/third_party/icu/source/data/in/icudtl.dat',
Mark Mentovai 2013/12/20 14:27:35 You should specify this path using ../third_party/
314 ],
315 }],
311 ], # conditions 316 ], # conditions
312 } 317 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | content/content_shell.gypi » ('j') | content/content_shell.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698